altos: Configuring pyro channels can use more than 48 characters
authorKeith Packard <keithp@keithp.com>
Tue, 3 Jun 2014 05:03:26 +0000 (22:03 -0700)
committerKeith Packard <keithp@keithp.com>
Tue, 3 Jun 2014 05:03:26 +0000 (22:03 -0700)
Increase the command buffer from 48 to 128 bytes to hold the longest
pyro configuration commands

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

index cd662314177c80a61520040c5932481dafc67bad..69372fed0268799d9be65b78f095ca9630ccae00 100644 (file)
@@ -23,7 +23,11 @@ __pdata uint32_t ao_cmd_lex_u32;
 __pdata char   ao_cmd_lex_c;
 __pdata enum ao_cmd_status ao_cmd_status;
 
+#if AO_PYRO_NUM
+#define CMD_LEN 128
+#else
 #define CMD_LEN        48
+#endif
 
 static __xdata char    cmd_line[CMD_LEN];
 static __pdata uint8_t cmd_len;