📄 notepad.c
字号:
struct status
{
unsigned UARTIntTxBufferFull :1;
unsigned UARTIntTxBufferEmpty :1;
unsigned UARTIntRxBufferFull :1;
unsigned UARTIntRxBufferEmpty :1;
unsigned UARTIntRxOverFlow :1;
unsigned UARTIntRxError:1;
};
extern struct status vUARTIntStatus;
struct tagKeypad
{
unsigned char keyBusy : 1;
unsigned char keyLeave : 1;
unsigned char keyPress : 1;
unsigned char keyFlag : 1;
} volatile KeyPADstatus;
KeyPADstatus.keyLeave = 0;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -