📄 main.c
字号:
#include "def.h"
#include "2410lib.h"
#include "bspinit.h"
void Main(void)
{
char c1;
Bsp_Init();
while(1)
{
Uart_Printf("\n Input a char");
Uart_SendByte(0xa);
Uart_SendByte(0xd);
c1=Uart_Getch();
Uart_SendByte(c1);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -