mirror of
https://github.com/silenty4ng/uv-k5-firmware-chinese-lts
synced 2025-01-15 14:54:40 +00:00
18 lines
211 B
C
18 lines
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
|