?? 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 + -