- Convert function comments to Doxygen.

- Remove instructions that have been transfered to the User's Guide.
- Remove the unused line drawing function.
- Pass through indent.
- Add more comments to the initialization code.
- In the user guide remove table with wiring scheme by LCD pin but add a new
  one for bitshaker wiring.
This commit is contained in:
mmdolze
2011-01-15 19:32:01 +00:00
parent 4a111252e1
commit 8bdfdaaaa1
4 changed files with 560 additions and 962 deletions
+405 -611
View File
File diff suppressed because it is too large Load Diff
+5 -10
View File
@@ -1,19 +1,16 @@
/*
* Driver for SED1330 graphical displays
* Header file
/** \file server/drivers/sed1330.h
* Driver for SED1330/1335 graphical displays.
*/
#ifndef SED1330_H
#define SED1330_H
#include "lcd.h"
MODULE_EXPORT int sed1330_init(Driver *drvthis);
MODULE_EXPORT void sed1330_close(Driver *drvthis);
MODULE_EXPORT int sed1330_width(Driver *drvthis);
MODULE_EXPORT int sed1330_height(Driver *drvthis);
MODULE_EXPORT int sed1330_cellheight(Driver *drvthis);
MODULE_EXPORT int sed1330_cellwidth(Driver *drvthis);
MODULE_EXPORT int sed1330_cellheight(Driver *drvthis);
MODULE_EXPORT int sed1330_cellwidth(Driver *drvthis);
MODULE_EXPORT void sed1330_clear(Driver *drvthis);
MODULE_EXPORT void sed1330_flush(Driver *drvthis);
MODULE_EXPORT void sed1330_string(Driver *drvthis, int x, int y, char lcd[]);
@@ -23,10 +20,8 @@ MODULE_EXPORT void sed1330_vbar(Driver *drvthis, int x, int y, int len, int prom
MODULE_EXPORT void sed1330_hbar(Driver *drvthis, int x, int y, int len, int promille, int pattern);
MODULE_EXPORT void sed1330_num(Driver *drvthis, int x, int y, int num);
MODULE_EXPORT void sed1330_heartbeat(Driver *drvthis, int type);
// No cursor function: use software cursor to prevent flickering ! */
MODULE_EXPORT int sed1330_icon(Driver *drvthis, int x, int y, int icon);
MODULE_EXPORT void sed1330_backlight(Driver *drvthis, int on);
MODULE_EXPORT const char * sed1330_get_key(Driver *drvthis);
MODULE_EXPORT const char *sed1330_get_key(Driver *drvthis);
#endif