2004-10-09 16:15:37 +00:00
|
|
|
#ifndef HD_BWCT_USB_H
|
|
|
|
|
#define HD_BWCT_USB_H
|
|
|
|
|
|
|
|
|
|
#include "lcd.h" /* for Driver */
|
|
|
|
|
|
2007-03-31 12:43:27 +00:00
|
|
|
/* vendor and product id */
|
|
|
|
|
#define BWCT_USB_VENDORID 0x03DA
|
|
|
|
|
#define BWCT_USB_PRODUCTID 0x0002
|
|
|
|
|
|
|
|
|
|
#define BWCT_LCD_RESET 1
|
|
|
|
|
#define BWCT_LCD_CMD 2
|
|
|
|
|
#define BWCT_LCD_DATA 3
|
|
|
|
|
#define BWCT_LCD_SET_CONTRAST 4
|
2004-10-09 16:15:37 +00:00
|
|
|
|
|
|
|
|
#define DEFAULT_SERIALNO ""
|
|
|
|
|
|
|
|
|
|
// initialise this particular driver
|
|
|
|
|
int hd_init_bwct_usb(Driver *drvthis);
|
|
|
|
|
|
|
|
|
|
#endif
|