X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=gfx%2Fcharts.c;h=b4abbea09e9d585f417a09227ab724eef8023cf0;hb=90f88fab4f3a104f59f619047d66fc7069d67f69;hp=79b178c01dde3a84b5e5069c23d0495ad80f5514;hpb=68d5a6796ff0efc9666ae359be2150d9638182f6;p=bertos.git diff --git a/gfx/charts.c b/gfx/charts.c old mode 100755 new mode 100644 index 79b178c0..b4abbea0 --- a/gfx/charts.c +++ b/gfx/charts.c @@ -1,9 +1,34 @@ -/*! +/** * \file * * * \brief Simple charts on top of mware/gfx routines (implementation). @@ -26,6 +51,12 @@ /*#* *#* $Log$ + *#* Revision 1.4 2006/07/19 12:56:26 bernie + *#* Convert to new Doxygen style. + *#* + *#* Revision 1.3 2005/11/27 23:33:29 bernie + *#* Reorder includes. + *#* *#* Revision 1.2 2005/11/04 18:17:45 bernie *#* Fix header guards and includes for new location of gfx module. *#* @@ -49,8 +80,8 @@ *#* *#*/ -#include -#include +#include "charts.h" +#include #ifndef CONFIG_CHART_ARROWS @@ -76,7 +107,7 @@ void chart_setScale(Bitmap *bm, chart_x_t xmin, chart_y_t ymin, chart_x_t xmax, } -/*! +/** * Draw the chart axes */ void chart_drawAxis(Bitmap *bm) @@ -112,7 +143,7 @@ void chart_drawAxis(Bitmap *bm) } -/*! +/** * Draw a set of \a curve_cnt connected segments, whose Y coordinates * are identified by the \a curve_y array and X-coordinates are * are evenly spaced by one virtual unit. @@ -131,7 +162,7 @@ void chart_drawCurve(Bitmap *bm, const chart_y_t *curve_y, int curve_cnt) } -/*! +/** * Disegna dei dot in corrispondenza delle coppie (dotsx[i];dotsy[i]) * Se dotsx e' NULL, i punti vengono disegnati ad intervalli regolari. */