Changeset 886
- Timestamp:
- 08/03/08 04:44:22 (4 months ago)
- Files:
-
- 1 modified
-
trunk/drv_IRLCD.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/drv_IRLCD.c
r884 r886 192 192 static void drv_IRLCD_clear(void) 193 193 { 194 char cmd[1];194 unsigned char cmd[1]; 195 195 196 196 cmd[0] = 0x01; /* clear */ … … 204 204 static void drv_IRLCD_write(const int row, const int col, const char *data, int len) 205 205 { 206 char cmd[1];206 unsigned char cmd[1]; 207 207 static int pos; 208 208 … … 224 224 static void drv_IRLCD_defchar(const int ascii, const unsigned char *matrix) 225 225 { 226 char cmd[10];226 unsigned char cmd[10]; 227 227 int i; 228 228
