首次初始化

This commit is contained in:
zhy
2026-07-08 10:30:07 +08:00
commit b4423fcfa2
1963 changed files with 898669 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
#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