#ifndef __UART_DEBUG_H #define __UART_DEBUG_H #ifdef __cplusplus extern "C" { #endif #include "main.h" #include "usart.h" #include void Debug_Print(const char *str); void Debug_Printf(const char *format, ...); void Print_DMA(const char *str); uint8_t UART_IsBusy(void); #ifdef __cplusplus } #endif #endif