main.c
来自「基于周立功arm开发板的实验程序」· C语言 代码 · 共 29 行
C
29 行
/*********************************************************************************************
* File: main.c
* Author: embest
* Desc: c main entry file for the IO port test
* History:
*********************************************************************************************/
/*------------------------------------------------------------------------------------------*/
/* includes files */
/*------------------------------------------------------------------------------------------*/
#include "uart_test.h"
#include "sys_init.h"
/*********************************************************************************************
* name: main
* func: c code entry
* para: none
* ret: none
* modify:
* comment:
*********************************************************************************************/
int main( )
{
sys_init(); /* Initial s3c2410's Clock, MMU, Interrupt,Port and UART */
while(1)
{
uart0_test();
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?