Implement print for UART logging

This commit is contained in:
2026-06-24 17:10:37 +02:00
parent 334295e1cd
commit 7dcdbbadf1
2 changed files with 36 additions and 1 deletions
+1 -1
View File
@@ -52,7 +52,7 @@ extern "C" {
#include <stdio.h>
#define DEBUG_PRINT(...) printf(__VA_ARGS__)
#else
#define DEBUG_PRINT(...)
#define DEBUG_PRINT(...) uart_printf(__VA_ARGS__)
#endif
/* USER CODE END EM */