From fe0bde5c32d3094f4b76c8e528e74fe77dae9dc7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mario=20H=C3=BCttel?= Date: Thu, 20 May 2021 23:54:42 +0200 Subject: [PATCH] Fix wrong string constant --- 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 51fcef3..3725182 100644 --- a/stm-firmware/shell.c +++ b/stm-firmware/shell.c @@ -161,7 +161,7 @@ static shellmatta_retCode_t shell_cmd_pt1000_res(const shellmatta_handle_t han pt1000_status = adc_pt1000_get_current_resistance(&resistance); if (pt1000_status == 2) { - strcat(display_status, " UNSTABLE "); + strcat(display_status, "UNSTABLE"); } else if (pt1000_status) { strcpy(display_status, "ERROR"); } else {