Remove send_serial and serial_baud commands.
authorKeith Packard <keithp@keithp.com>
Sat, 5 Dec 2009 07:35:40 +0000 (23:35 -0800)
committerKeith Packard <keithp@keithp.com>
Sat, 5 Dec 2009 07:41:19 +0000 (23:41 -0800)
No longer useful, and they take up space.

Signed-off-by: Keith Packard <keithp@keithp.com>
src/ao_serial.c

index 1e3ea3e39b2cd26852d30b18f5a8c5c095070f18..3f10376658cb10d02d627a9eed6c5b42be24b1c7 100644 (file)
@@ -85,16 +85,6 @@ ao_serial_drain(void) __critical
                ao_sleep(&ao_usart1_tx_fifo);
 }
 
-static void
-send_serial(void)
-{
-       ao_cmd_white();
-       while (ao_cmd_lex_c != '\n') {
-               ao_serial_putchar(ao_cmd_lex_c);
-               ao_cmd_lex();
-       }
-}
-
 static void
 monitor_serial(void)
 {
@@ -102,18 +92,9 @@ monitor_serial(void)
        serial_echo = ao_cmd_lex_i != 0;
 }
 
-static void
-serial_baud(void)
-{
-       ao_cmd_hex();
-       ao_serial_set_speed(ao_cmd_lex_i);
-}
-
 __code struct ao_cmds ao_serial_cmds[] = {
-       { 'S', send_serial,             "S <data>                           Send data to serial line" },
        { 'M', monitor_serial,          "M <enable>                         Monitor serial data" },
-       { 'B', serial_baud,             "B <0 = 4800, 1 = 57600>            Set serial baud rate" },
-       { 0, send_serial, NULL },
+       { 0, monitor_serial, NULL },
 };
 
 static const struct {