debug.h
来自「自己写的adi bf561的bootloader.实现最简单的串口和flash」· C头文件 代码 · 共 14 行
H
14 行
#ifndef __DEBUG_H__
#define __DEBUG_H__
void Uart_Init(int bps);
int printf(const char *fmt, ...);
unsigned char Uart_GetByte(void);
void Uart_SendByte(unsigned char data);
void Uart_SendData(char *pt , int len);
void Uart_Printf(char *fmt,...);
#endif /*__DEBUG_H__*/
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?