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
+19
View File
@@ -0,0 +1,19 @@
#ifndef STV5730_H
#define STV5730_H
extern lcd_logical_driver *stv5730;
int stv5730_init (struct lcd_logical_driver *driver, char *args);
void stv5730_close ();
void stv5730_clear ();
void stv5730_flush ();
void stv5730_string (int x, int y, char string[]);
void stv5730_chr (int x, int y, char c);
void stv5730_vbar (int x, int len);
void stv5730_hbar (int x, int y, int len);
void stv5730_num (int x, int num);
void stv5730_icon (int which, char dest);
void stv5730_flush_box (int lft, int top, int rgt, int bot);
void stv5730_draw_frame (char *dat);
#endif