Update preset.
[bertos.git] / bertos / gfx / charts.c
index 0a9a195db1dfad8d2c9ceec5bca8aef9f8745ca9..f7987411836c88fc8cb00fa13746028570f1d3de 100644 (file)
  *
  * -->
  *
- * \version $Id$
  * \author Bernie Innocenti <bernie@codewiz.org>
  *
  * \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"