hd44780 driver: new ConnectionType ftdi (Thomas Jarosch)

This commit is contained in:
marschap
2007-11-03 17:39:05 +00:00
parent 6af05c509a
commit 46347e8c94
10 changed files with 360 additions and 4 deletions
+15
View File
@@ -0,0 +1,15 @@
#ifndef HD_FTDI_H
#define HD_FTDI_H
#include "lcd.h" /* for Driver */
#include "hd44780-low.h"
// initialise this particular driver
int hd_init_ftdi(Driver *drvthis);
void ftdi_HD44780_senddata(PrivateData *p, unsigned char displayID, unsigned char flags, unsigned char ch);
void ftdi_HD44780_backlight(PrivateData *p, unsigned char state);
unsigned char ftdi_HD44780_scankeypad(PrivateData *p);
void ftdi_HD44780_close(PrivateData *p);
#endif