altos: Configuring pyro channels can use more than 48 characters
[fw/altos] / src / kernel / ao_cmd.c
index 4ebaa6079368ec80164a8176d8d010914552cc9d..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;
@@ -279,6 +283,9 @@ version(void)
 #endif
 #if HAS_LOG
               "log-format       %u\n"
+#endif
+#if defined(AO_BOOT_APPLICATION_BASE) && defined(AO_BOOT_APPLICATION_BOUND)
+              "program-space    %u\n"
 #endif
               , ao_manufacturer
               , ao_product
@@ -288,6 +295,9 @@ version(void)
 #endif
 #if HAS_LOG
               , ao_log_format
+#endif
+#if defined(AO_BOOT_APPLICATION_BASE) && defined(AO_BOOT_APPLICATION_BOUND)
+              , (uint32_t) AO_BOOT_APPLICATION_BOUND - (uint32_t) AO_BOOT_APPLICATION_BASE
 #endif
                );
        printf("software-version %s\n", ao_version);