From 898feac168bcb0387048d4bcbbb0c592ad5172fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mario=20H=C3=BCttel?= Date: Sun, 29 Nov 2020 20:00:16 +0100 Subject: [PATCH] increase shell tx buffer --- stm-firmware/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stm-firmware/main.c b/stm-firmware/main.c index eb127b0..e2c4f84 100644 --- a/stm-firmware/main.c +++ b/stm-firmware/main.c @@ -80,7 +80,7 @@ static inline void uart_gpio_config(void) } -static char shell_uart_tx_buff[128]; +static char shell_uart_tx_buff[256]; static char shell_uart_rx_buff[48]; struct stm_uart shell_uart;