Make LogUart receive a const char* const

This commit is contained in:
Juan Antonio 2023-12-14 01:36:27 +01:00 committed by egzumer
parent 33e4e3c4e0
commit 06f1c651bc

View File

@ -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));
}