uv-k5-firmware-chinese-lts/debugging.h
2023-11-30 14:38:27 +08:00

18 lines
No EOL
211 B
C

#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