From: Keith Packard Date: Sun, 26 Apr 2009 22:38:03 +0000 (-0700) Subject: Clean up commands a bit X-Git-Tag: 0.1~2 X-Git-Url: https://git.gag.com/?p=fw%2Faltos;a=commitdiff_plain;h=819f1de8dd6010fae050bcef930943c7923929f9 Clean up commands a bit --- diff --git a/ao_monitor.c b/ao_monitor.c index eee66fa2..17eee5a3 100644 --- a/ao_monitor.c +++ b/ao_monitor.c @@ -72,7 +72,7 @@ ao_set_monitor(void) } __code struct ao_cmds ao_monitor_cmds[] = { - { 'M', ao_set_monitor, "M Enable/disable radio monitoring" }, + { 'm', ao_set_monitor, "m <0 off, 1 on> Enable/disable radio monitoring" }, { 0, ao_set_monitor, NULL }, }; diff --git a/ao_serial.c b/ao_serial.c index 2ed07914..ae5e0764 100644 --- a/ao_serial.c +++ b/ao_serial.c @@ -101,7 +101,7 @@ send_serial(void) } __code struct ao_cmds ao_serial_cmds[] = { - { 'S', send_serial, "S Send data to serial line" }, + { 'S', send_serial, "S Send data to serial line" }, { 0, send_serial, NULL }, };