doc: Various documentation updates.
[bertos.git] / bertos / gfx / charts.c
index 0a9a195db1dfad8d2c9ceec5bca8aef9f8745ca9..718d0b782200ac335e53faf63177e38403049a67 100644 (file)
  *
  * \brief Simple charts on top of mware/gfx routines (implementation).
  *
- * Sample usage:
- *
- * \code
- *     bm = chart_init(0, ymax, N_POINTS_CURVE, ymin);
- *
- *     chart_drawCurve(bm, curve_y, curve_points + 1);
- *     gfx_setViewRect(bm, xmin, ymax, xmax, ymin);
- *     chart_drawDots(bm, samples_x, samples_y, samples_cnt);
- *
- *     print_bitmap(bm);
- * \endcode
  */
 
 #include "charts.h"