Commit of changes from Joris And Michael:

- Variable char sized
- Keypad support
- Improved init
- Improved flickering, no hardware cursor anymore
- Support for G191D
- Minor other changes
This commit is contained in:
robijn
2003-05-04 17:34:37 +00:00
parent 93daed7f66
commit c6f9540b01
2 changed files with 429 additions and 183 deletions
+4 -2
View File
@@ -19,10 +19,12 @@ MODULE_EXPORT void sed1330_chr( Driver * drvthis, int x, int y, char c );
MODULE_EXPORT void sed1330_vbar( Driver * drvthis, int x, int y, int len, int promille, int pattern );
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 num );
MODULE_EXPORT void sed1330_num( Driver * drvthis, int x, int y, int num );
MODULE_EXPORT void sed1330_heartbeat( Driver * drvthis, int type );
MODULE_EXPORT void sed1330_cursor( Driver * drvthis, int x, int y, char state );
// 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 char * sed1330_get_key(Driver *drvthis);
#endif