main.c
来自「tsp_test为ucos中tsp的测试代码。运行在2410的板子上」· C语言 代码 · 共 32 行
C
32 行
/*********************************************************************************************
* File: main.c
* Author: embest
* Desc: c main entry
* History:
* R.X.Huang, Programming start, March 12, 2005
*********************************************************************************************/
/*------------------------------------------------------------------------------------------*/
/* include files */
/*------------------------------------------------------------------------------------------*/
#include "2410lib.h"
#define LCD_D_ON rGPCDAT |= (1 << 4);
/*********************************************************************************************
* name: main
* func: c code entry
* para: none
* ret: none
* modify:
* comment:
*********************************************************************************************/
void Main(int argc,char **argv)
{
sys_init(); /* Initial s3c2410's Clock, MMU, Interrupt,Port and UART */
lcd_init_app();
LCD_D_ON;
while(1)
{
tsp_test();
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?