From 06f1c651bc70d46069213a65207664576d107509 Mon Sep 17 00:00:00 2001 From: Juan Antonio Date: Thu, 14 Dec 2023 01:36:27 +0100 Subject: [PATCH] Make LogUart receive a const char* const --- debugging.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debugging.h b/debugging.h index 49f78ea8f..bb329f5d8 100644 --- a/debugging.h +++ b/debugging.h @@ -8,7 +8,7 @@ #include "am_fix.h" -static inline void LogUart(char * str) +static inline void LogUart(const char * const str) { UART_Send(str, strlen(str)); }