main.c
来自「一个类似于shell的程序」· C语言 代码 · 共 37 行
C
37 行
#include <string.h>
#include "..\inc\include.h"
#include "..\inc\isr.h"
extern char prompt;
void Main(void)
{
#if (PLLON==1)
ChangePllValue(PLL_M,PLL_P,PLL_S);
#endif
Port_Init ();
Uart_Init (0,115200);
Uart_Select (0);
Isr_Init();
Uart_Printf("\r\n%c",prompt);
while(1)
{
;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?