22 lines
321 B
C
22 lines
321 B
C
#ifndef __UART_DEBUG_H
|
|
#define __UART_DEBUG_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "main.h"
|
|
#include "usart.h"
|
|
#include <stdint.h>
|
|
|
|
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 |