From 7385c76af46ff400b9e79a8540199be289cb57c0 Mon Sep 17 00:00:00 2001 From: Keith Packard Date: Mon, 2 Jun 2014 22:03:26 -0700 Subject: [PATCH] altos: Configuring pyro channels can use more than 48 characters Increase the command buffer from 48 to 128 bytes to hold the longest pyro configuration commands Signed-off-by: Keith Packard --- src/kernel/ao_cmd.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/kernel/ao_cmd.c b/src/kernel/ao_cmd.c index cd662314..69372fed 100644 --- a/src/kernel/ao_cmd.c +++ b/src/kernel/ao_cmd.c @@ -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; -- 2.30.2