Added driver for SED1520 graphic LCDs, STV5730 TV Output plus a small fix for render.c for bigger display sizes

This commit is contained in:
afrob
2001-09-22 11:45:12 +00:00
parent 968a733d88
commit 2e654fd333
10 changed files with 2470 additions and 2 deletions
+14
View File
@@ -65,6 +65,14 @@
#include "bayrad.h"
#endif
#ifdef SED1520_DRV
#include "sed1520.h"
#endif
#ifdef STV5730_DRV
#include "stv5730.h"
#endif
#ifdef GLK_DRV
#include "glk.h"
#endif
@@ -122,6 +130,12 @@ lcd_physical_driver drivers[] = {
#endif
#ifdef GLK_DRV
{"glk", glk_init,},
#endif
#ifdef SED1520_DRV
{"sed1520", sed1520_init,},
#endif
#ifdef STV5730_DRV
{"stv5730", stv5730_init,},
#endif
{NULL, NULL,},