📄 uart.h
字号:
#ifndef _UART_H_
#define _UART_H_
void UartInit(unsigned int nPClock);
void UartPutChar(char chVal);
void UartPrint(const char *pszBuf);
void UartPutInt(unsigned int nVal);
void UartPutPointer(unsigned int nVal);
void UartPutHex(unsigned int nVal);
void UartPrintf(const char *pszFmt,...);
#ifndef printk
#define printk UartPrintf
#endif
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -