📄 main.c
字号:
#include <stdio.h>
#include "type.h"
#include "io.h"
void main(void)
{
//select 5910 mode(:configured in page p6-37)
//SetIo32(0x0000, 0xFFFE100C);
InitSystem();
printf("\nOmap device basic boot is finished!\n");
printf("\nSerial Uart1 Test...\n");
SerialTest();
printf("The serial test is complete!"); //Why not display?
}
void Delay(int Dtime)
{
int i;
for(i = 0; i < Dtime; i++)
{
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -