diff --git a/debugging.h b/debugging.h new file mode 100644 index 0000000..58b85a4 --- /dev/null +++ b/debugging.h @@ -0,0 +1,18 @@ +#ifndef DEBUGGING_H +#define DEBUGGING_H + +#include "driver/uart.h" +#include "string.h" +#include "external/printf/printf.h" + + +static inline void LogUart(char * str) +{ + UART_Send(str, strlen(str)); +} + + + + + +#endif \ No newline at end of file