hd44780: Added 'usbtiny' connection type (by Siarhei Herasimchuk).

This commit is contained in:
mmdolze
2010-11-22 20:01:10 +00:00
parent 23a7c6c6b0
commit 85c5e8c45a
8 changed files with 200 additions and 2 deletions
+19
View File
@@ -0,0 +1,19 @@
#ifndef HD_USBTINY_H
#define HD_USBTINY_H
#include "lcd.h" /* for Driver */
#include "hd44780-low.h"
/* vendor and product id */
#define USBTINY_VENDORID 0x03EB
#define USBTINY_PRODUCTID 0x0002
/* Protocole IR/LCD */
#define USBTINY_INSTR 20
#define USBTINY_DATA 21
/* initialise this particular driver */
int hd_init_usbtiny(Driver *drvthis);
#endif