mirror of
https://github.com/oliverschmidt/contiki.git
synced 2024-11-03 22:06:22 +00:00
14 lines
254 B
C
14 lines
254 B
C
#ifndef raven_lcd_h
|
|
#define raven_lcd_h
|
|
|
|
int raven_lcd_serial_input(unsigned char ch);
|
|
PROCESS_NAME(raven_lcd_process);
|
|
|
|
/* Events for the Raven LCD processing loop */
|
|
#define PING_REQUEST 0xc1
|
|
#define PING_REPLY 0xc0
|
|
#define SERIAL_CMD 0x1
|
|
|
|
|
|
#endif
|