From 5727aa588570d066be9287b81acfd92d7910de80 Mon Sep 17 00:00:00 2001 From: Olivier Matz Date: Thu, 3 Apr 2014 20:49:23 +0200 Subject: [PATCH] add rc_proto log type --- commands_gen.c | 2 ++ main.h | 1 + 2 files changed, 3 insertions(+) diff --git a/commands_gen.c b/commands_gen.c index 752b998..461a807 100644 --- a/commands_gen.c +++ b/commands_gen.c @@ -158,6 +158,7 @@ static const char PROGMEM uart_log[] = "uart"; static const char PROGMEM i2c_log[] = "i2c"; static const char PROGMEM default_log[] = "default"; static const char PROGMEM xbee_log[] = "xbee"; +static const char PROGMEM rc_proto_log[] = "rc_proto"; struct log_name_and_num { const char *name; @@ -169,6 +170,7 @@ static const struct log_name_and_num log_name_and_num[] = { { i2c_log, E_I2C }, { default_log, E_USER_DEFAULT }, { xbee_log, E_USER_XBEE }, + { rc_proto_log, E_USER_RC_PROTO }, }; static uint8_t diff --git a/main.h b/main.h index d64039b..d83c5fa 100644 --- 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) -- 2.20.1