OS_CORE.C(4)
生活随笔
收集整理的這篇文章主要介紹了
OS_CORE.C(4)
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
/*$PAGE*/
/*
*********************************************************************************************************
* INITIALIZATION
* 初始化
* Description: This function is used to initialize the internals of uC/OS-II and MUST be called prior to
* creating any uC/OS-II object and, prior to calling OSStart().
* 該功能用來初始化uC/OS-II,必須放在任何一個實體和OSStart()之前
* Arguments : none
*
* Returns : none
*********************************************************************************************************
*/void OSInit(void) /*初始化UC/OS-II函數*/
{OSInitHookBegin(); /* Call port specific initialization code調用用戶特定的初始化代碼(通過一個接口函數實現用戶要求的插件式進入系統中) */OS_InitMisc(); /* Initialize miscellaneous variables 初始化各種變量 */OS_InitRdyList(); /* Initialize the Ready List初始化就緒列表 */OS_InitTCBList(); /* Initialize the free list of OS_TCBs 初始化OS_TCB空閑列表 */OS_InitEventList(); /* Initialize the free list of OS_EVENTs 初始化OS_EVENT空閑列表 */#if (OS_FLAG_EN > 0u) && (OS_MAX_FLAGS > 0u)OS_FlagInit(); /* Initialize the event flag structures初始化事件標志結構 */
#endif#if (OS_MEM_EN > 0u) && (OS_MAX_MEM_PART > 0u)OS_MemInit(); /* Initialize the memory manager 初始化內存管理 */
#endif#if (OS_Q_EN > 0u) && (OS_MAX_QS > 0u)OS_QInit(); /* Initialize the message queue structures 初始化消息隊列結構 */
#endifOS_InitTaskIdle(); /* Create the Idle Task 創建空閑任務 */
#if OS_TASK_STAT_EN > 0uOS_InitTaskStat(); /* Create the Statistic Task 創建統計任務 */
#endif#if OS_TMR_EN > 0uOSTmr_Init(); /* Initialize the Timer Manager 初始化時間管理器 */
#endifOSInitHookEnd(); /* Call port specific init. code 調用用戶特定的初始化代碼結束 */#if OS_DEBUG_EN > 0uOSDebugInit();
#endif
}
總結
以上是生活随笔為你收集整理的OS_CORE.C(4)的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: OS_CORE.C(3)
- 下一篇: OS_CORE.C(5)