日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

OS_CORE.C(4)

發布時間:2025/3/21 编程问答 27 豆豆
生活随笔 收集整理的這篇文章主要介紹了 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)的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。