fix xbee_user after rework (e39c5d5)
[protos/xbee-avr.git] / main.h
diff --git a/main.h b/main.h
index ba0836e..0f87a4f 100644 (file)
--- a/main.h
+++ b/main.h
@@ -46,6 +46,7 @@
 /** ERROR NUMS */
 #define E_USER_DEFAULT           194
 #define E_USER_XBEE              195
+#define E_USER_RC_PROTO          196
 
 #define LED1_ON()       sbi(PORTA, 2)
 #define LED1_OFF()      cbi(PORTA, 2)
@@ -76,9 +77,6 @@ struct xbeeboard {
        char prompt[RDLINE_PROMPT_SIZE];
 
        struct callout_mgr intr_cm;
-       struct callout spi_timer;
-       struct callout beep_timer;
-       struct callout xbee_rx_poll_timer;
 
        /* log */
        uint8_t logs[NB_LOGS+1];
@@ -90,3 +88,4 @@ extern struct xbeeboard xbeeboard;
 extern volatile uint32_t global_ms;
 
 void bootloader(void);
+uint16_t get_time_ms(void);