1
mirror of https://github.com/egzumer/uv-k5-firmware-custom.git synced 2025-12-12 04:34:31 +04:00
Files
uv-k5-firmware-custom/debugging.h

18 lines
211 B
C
Raw Normal View History

2023-10-28 11:12:37 +02:00
#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