?? main.c
字號:
/**************************************************************************
* *
* PROJECT : ARM port for UCOS-II *
* *
* MODULE : EX1.c *
* *
* AUTHOR : Michael Anburaj *
* URL : http://geocities.com/michaelanburaj/ *
* EMAIL: michaelanburaj@hotmail.com *
* *
* PROCESSOR : Any processor *
* *
* IDE : Any IDE *
* *
* DESCRIPTION : *
* This is a sample code to test UCOS-II. *
* *
**************************************************************************/
#include "includes.h"
/* ********************************************************************* */
/* Global functions */
int main(void)
{
FirmInit();
CONSOL_Printf("Firm init finished\n");
CONSOL_Printf("OS init begin\n");
OSInit(); /* Initialize uC/OS-II */
CONSOL_Printf("OS init finished\n");
CONSOL_Printf("OS Start!^_^\n");
OSStart(); /* Start multitasking */
}
/* ********************************************************************* */
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -