Skip to content

Commit

Permalink
Make LogUart receive a const char* const
Browse files Browse the repository at this point in the history
  • Loading branch information
JuantAldea authored and egzumer committed Dec 14, 2023
1 parent 33e4e3c commit 06f1c65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion debugging.h
Original file line number Diff line number Diff line change
Expand Up @@ -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));
}
Expand Down

0 comments on commit 06f1c65

Please sign in to comment.