From: Olivier Matz Date: Tue, 8 Apr 2014 20:37:46 +0000 (+0200) Subject: fix log types in command line X-Git-Url: http://git.droids-corp.org/?p=protos%2Fxbee-avr.git;a=commitdiff_plain;h=6636a24523716a7a1380341cf349af8ce7bf7a27 fix log types in command line --- diff --git a/commands_gen.c b/commands_gen.c index 461a807..8f962e3 100644 --- a/commands_gen.c +++ b/commands_gen.c @@ -326,7 +326,8 @@ static void cmd_log_type_parsed(void * parsed_result, void *data) const char PROGMEM str_log_arg1_type[] = "type"; const parse_token_string_t PROGMEM cmd_log_arg1_type = TOKEN_STRING_INITIALIZER(struct cmd_log_type_result, arg1, str_log_arg1_type); /* keep it sync with log_name_and_num above */ -const char PROGMEM str_log_arg2_type[] = "uart#rs#servo#traj#i2c#oa#strat#i2cproto#ext#sensor#bd#cs"; +const char PROGMEM str_log_arg2_type[] = + "uart#i2c#i2cproto#default#xbee#rc_proto"; const parse_token_string_t PROGMEM cmd_log_arg2_type = TOKEN_STRING_INITIALIZER(struct cmd_log_type_result, arg2, str_log_arg2_type); const char PROGMEM str_log_arg3[] = "on#off"; const parse_token_string_t PROGMEM cmd_log_arg3 = TOKEN_STRING_INITIALIZER(struct cmd_log_type_result, arg3, str_log_arg3);