From ec6681418484227c32e9cbf76d3ebe4ec722724c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mario=20H=C3=BCttel?= Date: Sun, 29 Nov 2020 17:19:40 +0100 Subject: [PATCH] Decrease history buffer of shellmatta --- stm-firmware/shell.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stm-firmware/shell.c b/stm-firmware/shell.c index 1c115d5..b10f878 100644 --- a/stm-firmware/shell.c +++ b/stm-firmware/shell.c @@ -48,7 +48,7 @@ extern struct stm_uart shell_uart; static shellmatta_instance_t shell; static char shell_buffer[512]; -static char IN_SECTION(.ccm.bss) history_buffer[600]; +static char IN_SECTION(.ccm.bss) history_buffer[512]; static bool check_opt(const char *args, uint32_t len, const char *opt_to_check) {