From 1c5a27f693b7c6e51a8e2de4b816b57fc618a7ed Mon Sep 17 00:00:00 2001 From: c_oflynn Date: Tue, 14 Oct 2008 22:05:09 +0000 Subject: [PATCH] Moved raven-lcd.h file --- platform/avr-raven/raven-lcd.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 platform/avr-raven/raven-lcd.h diff --git a/platform/avr-raven/raven-lcd.h b/platform/avr-raven/raven-lcd.h new file mode 100644 index 000000000..f30407d55 --- /dev/null +++ b/platform/avr-raven/raven-lcd.h @@ -0,0 +1,13 @@ +#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