From 6636a24523716a7a1380341cf349af8ce7bf7a27 Mon Sep 17 00:00:00 2001 From: Olivier Matz Date: Tue, 8 Apr 2014 22:37:46 +0200 Subject: [PATCH] fix log types in command line --- commands_gen.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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); -- 2.20.1