亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? os_cfg.h

?? ucos2.86版本結合STM板極支持包
?? H
字號:
/*
*********************************************************************************************************
*                                                uC/OS-II
*                                          The Real-Time Kernel
*
*                           (c) Copyright 1992-2007, Jean J. Labrosse, Weston, FL
*                                           All Rights Reserved
*
*                                  uC/OS-II Configuration File for V2.8x
*
* File    : OS_CFG.H
* By      : Jean J. Labrosse
* Version : V2.85
*
* LICENSING TERMS:
* ---------------
*   uC/OS-II is provided in source form for FREE evaluation, for educational use or for peaceful research.
* If you plan on using  uC/OS-II  in a commercial product you need to contact Micri祄 to properly license
* its use in your product. We provide ALL the source code for your convenience and to help you experience
* uC/OS-II.   The fact that the  source is provided does  NOT  mean that you can use it without  paying a
* licensing fee.
*********************************************************************************************************
*/

#ifndef OS_CFG_H
#define OS_CFG_H

                                       /* ---------------------- MISCELLANEOUS ----------------------- */
#define OS_APP_HOOKS_EN           1    /* Application-defined hooks are called from the uC/OS-II hooks */
#define OS_ARG_CHK_EN             1    /* Enable (1) or Disable (0) argument checking                  */
#define OS_CPU_HOOKS_EN           1    /* uC/OS-II hooks are found in the processor port files         */

#define OS_DEBUG_EN               1    /* Enable(1) debug variables                                    */

#define OS_EVENT_NAME_SIZE       16    /* Determine the size of the name of a Sem, Mutex, Mbox or Q    */

#define OS_LOWEST_PRIO           31    /* Defines the lowest priority that can be assigned ...         */
                                       /* ... MUST NEVER be higher than 254!                           */

#define OS_MAX_EVENTS            10    /* Max. number of event control blocks in your application      */
#define OS_MAX_FLAGS              5    /* Max. number of Event Flag Groups    in your application      */
#define OS_MAX_MEM_PART           5    /* Max. number of memory partitions                             */
#define OS_MAX_QS                 4    /* Max. number of queue control blocks in your application      */
#define OS_MAX_TASKS             16    /* Max. number of tasks in your application, MUST be >= 2       */

#define OS_SCHED_LOCK_EN          1    /*     Include code for OSSchedLock() and OSSchedUnlock()       */

#define OS_TICK_STEP_EN           1    /* Enable tick stepping feature for uC/OS-View                  */
#define OS_TICKS_PER_SEC        100    /* Set the number of ticks in one second                        */


                                       /* --------------------- TASK STACK SIZE ---------------------- */
#define OS_TASK_TMR_STK_SIZE    128    /* Timer      task stack size (# of OS_STK wide entries)        */
#define OS_TASK_STAT_STK_SIZE   128    /* Statistics task stack size (# of OS_STK wide entries)        */
#define OS_TASK_IDLE_STK_SIZE   128    /* Idle       task stack size (# of OS_STK wide entries)        */


                                       /* --------------------- TASK MANAGEMENT ---------------------- */
#define OS_TASK_CHANGE_PRIO_EN    1    /*     Include code for OSTaskChangePrio()                      */
#define OS_TASK_CREATE_EN         1    /*     Include code for OSTaskCreate()                          */
#define OS_TASK_CREATE_EXT_EN     1    /*     Include code for OSTaskCreateExt()                       */
#define OS_TASK_DEL_EN            1    /*     Include code for OSTaskDel()                             */
#define OS_TASK_NAME_SIZE        16    /*     Determine the size of a task name                        */
#define OS_TASK_PROFILE_EN        1    /*     Include variables in OS_TCB for profiling                */
#define OS_TASK_QUERY_EN          1    /*     Include code for OSTaskQuery()                           */
#define OS_TASK_STAT_EN           1    /*     Enable (1) or Disable(0) the statistics task             */
#define OS_TASK_STAT_STK_CHK_EN   1    /*     Check task stacks from statistic task                    */
#define OS_TASK_SUSPEND_EN        1    /*     Include code for OSTaskSuspend() and OSTaskResume()      */
#define OS_TASK_SW_HOOK_EN        1    /*     Include code for OSTaskSwHook()                          */


                                       /* ----------------------- EVENT FLAGS ------------------------ */
#define OS_FLAG_EN                1    /* Enable (1) or Disable (0) code generation for EVENT FLAGS    */
#define OS_FLAG_ACCEPT_EN         1    /*     Include code for OSFlagAccept()                          */
#define OS_FLAG_DEL_EN            1    /*     Include code for OSFlagDel()                             */
#define OS_FLAG_NAME_SIZE        16    /*     Determine the size of the name of an event flag group    */
#define OS_FLAGS_NBITS           16    /*     Size in #bits of OS_FLAGS data type (8, 16 or 32)        */
#define OS_FLAG_QUERY_EN          1    /*     Include code for OSFlagQuery()                           */
#define OS_FLAG_WAIT_CLR_EN       1    /*     Include code for Wait on Clear EVENT FLAGS               */


                                       /* -------------------- MESSAGE MAILBOXES --------------------- */
#define OS_MBOX_EN                1    /* Enable (1) or Disable (0) code generation for MAILBOXES      */
#define OS_MBOX_ACCEPT_EN         1    /*     Include code for OSMboxAccept()                          */
#define OS_MBOX_DEL_EN            1    /*     Include code for OSMboxDel()                             */
#define OS_MBOX_PEND_ABORT_EN     1    /*     Include code for OSMboxPendAbort()                       */
#define OS_MBOX_POST_EN           1    /*     Include code for OSMboxPost()                            */
#define OS_MBOX_POST_OPT_EN       1    /*     Include code for OSMboxPostOpt()                         */
#define OS_MBOX_QUERY_EN          1    /*     Include code for OSMboxQuery()                           */


                                       /* --------------------- MEMORY MANAGEMENT -------------------- */
#define OS_MEM_EN                 1    /* Enable (1) or Disable (0) code generation for MEMORY MANAGER */
#define OS_MEM_NAME_SIZE         16    /*     Determine the size of a memory partition name            */
#define OS_MEM_QUERY_EN           1    /*     Include code for OSMemQuery()                            */


                                       /* ---------------- MUTUAL EXCLUSION SEMAPHORES --------------- */
#define OS_MUTEX_EN               1    /* Enable (1) or Disable (0) code generation for MUTEX          */
#define OS_MUTEX_ACCEPT_EN        1    /*     Include code for OSMutexAccept()                         */
#define OS_MUTEX_DEL_EN           1    /*     Include code for OSMutexDel()                            */
#define OS_MUTEX_QUERY_EN         1    /*     Include code for OSMutexQuery()                          */


                                       /* ---------------------- MESSAGE QUEUES ---------------------- */
#define OS_Q_EN                   1    /* Enable (1) or Disable (0) code generation for QUEUES         */
#define OS_Q_ACCEPT_EN            1    /*     Include code for OSQAccept()                             */
#define OS_Q_DEL_EN               1    /*     Include code for OSQDel()                                */
#define OS_Q_FLUSH_EN             1    /*     Include code for OSQFlush()                              */
#define OS_Q_PEND_ABORT_EN        1    /*     Include code for OSQPendAbort()                          */
#define OS_Q_POST_EN              1    /*     Include code for OSQPost()                               */
#define OS_Q_POST_FRONT_EN        1    /*     Include code for OSQPostFront()                          */
#define OS_Q_POST_OPT_EN          1    /*     Include code for OSQPostOpt()                            */
#define OS_Q_QUERY_EN             1    /*     Include code for OSQQuery()                              */


                                       /* ------------------------ SEMAPHORES ------------------------ */
#define OS_SEM_EN                 1    /* Enable (1) or Disable (0) code generation for SEMAPHORES     */
#define OS_SEM_ACCEPT_EN          1    /*    Include code for OSSemAccept()                            */
#define OS_SEM_DEL_EN             1    /*    Include code for OSSemDel()                               */
#define OS_SEM_PEND_ABORT_EN      1    /*    Include code for OSSemPendAbort()                         */
#define OS_SEM_QUERY_EN           1    /*    Include code for OSSemQuery()                             */
#define OS_SEM_SET_EN             1    /*    Include code for OSSemSet()                               */


                                       /* --------------------- TIME MANAGEMENT ---------------------- */
#define OS_TIME_DLY_HMSM_EN       1    /*     Include code for OSTimeDlyHMSM()                         */
#define OS_TIME_DLY_RESUME_EN     1    /*     Include code for OSTimeDlyResume()                       */
#define OS_TIME_GET_SET_EN        1    /*     Include code for OSTimeGet() and OSTimeSet()             */
#define OS_TIME_TICK_HOOK_EN      1    /*     Include code for OSTimeTickHook()                        */


                                       /* --------------------- TIMER MANAGEMENT --------------------- */
#define OS_TMR_EN                 1    /* Enable (1) or Disable (0) code generation for TIMERS         */
#define OS_TMR_CFG_MAX           16    /*     Maximum number of timers                                 */
#define OS_TMR_CFG_NAME_SIZE     16    /*     Determine the size of a timer name                       */
#define OS_TMR_CFG_WHEEL_SIZE     8    /*     Size of timer wheel (#Spokes)                            */
#define OS_TMR_CFG_TICKS_PER_SEC 10    /*     Rate at which timer management task runs (Hz)            */


#endif

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产激情视频一区二区三区欧美 | 精品国免费一区二区三区| 亚洲成人动漫在线观看| 欧美日韩国产欧美日美国产精品| 亚洲一区二区美女| 欧美一级视频精品观看| 精品在线一区二区| 国产精品久久久久久久久免费樱桃 | 欧美日韩国产片| 六月丁香婷婷色狠狠久久| 久久久亚洲综合| 99久久99久久精品免费看蜜桃| 亚洲欧美另类图片小说| 欧美日韩黄色一区二区| 九九热在线视频观看这里只有精品| 久久先锋资源网| 日本大香伊一区二区三区| 樱花草国产18久久久久| 欧美大片免费久久精品三p| 国产精品综合二区| 亚洲一区二区三区四区不卡| 欧美一区二区三区影视| 国产成人精品aa毛片| 亚洲精品国久久99热| 日韩午夜av一区| 成人av在线网站| 免费高清在线视频一区·| 亚洲国产精品国自产拍av| 欧美三级电影在线看| 国产一区二区三区免费看| 一区二区三区在线视频免费 | 精品入口麻豆88视频| 99久久免费国产| 日日夜夜免费精品视频| 欧美激情资源网| 日韩欧美中文字幕制服| av在线不卡免费看| 久热成人在线视频| 亚洲精品免费在线播放| 久久女同精品一区二区| 欧美日韩另类国产亚洲欧美一级| 国产成人亚洲综合a∨婷婷图片| 亚洲一区二区精品久久av| 国产亚洲精品aa午夜观看| 337p亚洲精品色噜噜噜| 一本到不卡精品视频在线观看| 久久国产精品色| 亚洲精品成人少妇| 国产色一区二区| 日韩一区二区麻豆国产| 日本道色综合久久| 99久久99久久免费精品蜜臀| 国产在线麻豆精品观看| 日韩二区三区四区| 亚洲影院免费观看| 亚洲图片激情小说| 国产午夜精品一区二区三区嫩草| 在线综合视频播放| 国内精品国产成人国产三级粉色| 一二三区精品福利视频| 亚洲裸体xxx| 中文字幕中文乱码欧美一区二区| 精品国产电影一区二区| 日韩欧美成人午夜| 欧美日韩国产综合视频在线观看| 欧美在线观看视频一区二区| 99在线热播精品免费| 不卡一区二区中文字幕| 暴力调教一区二区三区| 成人app下载| 成年人国产精品| aa级大片欧美| 91女厕偷拍女厕偷拍高清| 成人av在线电影| a在线欧美一区| 91小视频免费看| 色系网站成人免费| 91久久精品网| 精品视频1区2区| 欧美另类变人与禽xxxxx| 欧美视频精品在线观看| 欧美日韩成人在线一区| 欧美一区二区观看视频| 欧美电影免费观看高清完整版| 欧美一二三四在线| 精品理论电影在线| 国产欧美日韩中文久久| 国产精品不卡在线观看| 一区二区三区免费在线观看| 亚洲最大的成人av| 亚洲第一激情av| 日本v片在线高清不卡在线观看| 免费观看一级欧美片| 国产一区二区不卡老阿姨| 成人性生交大片免费看在线播放 | 极品少妇xxxx偷拍精品少妇| 国产一区二区精品久久99| 成人免费看的视频| 色又黄又爽网站www久久| 欧美日韩一区小说| 精品国产成人在线影院| 中文字幕人成不卡一区| 亚洲国产日韩一级| 精品一区二区免费视频| av动漫一区二区| 欧美乱妇23p| 国产亚洲成av人在线观看导航| 国产精品久久久久7777按摩 | 国产精品不卡在线| 亚洲一区在线免费观看| 国产自产视频一区二区三区| 色综合一区二区| 欧美一区2区视频在线观看| 欧美国产激情二区三区| 亚洲国产视频在线| 国产不卡视频一区| 制服丝袜激情欧洲亚洲| 中文字幕+乱码+中文字幕一区| 亚洲激情第一区| 国产在线精品一区二区夜色| 成人自拍视频在线| 在线电影院国产精品| 中文字幕av一区二区三区高| 天堂一区二区在线| 成人福利视频在线看| 91精品国产综合久久精品麻豆 | 日韩精品一区二区三区蜜臀 | 丁香六月久久综合狠狠色| 欧美日韩在线观看一区二区| 国产欧美一区视频| 日本亚洲电影天堂| 欧洲一区二区三区在线| 中文在线资源观看网站视频免费不卡| 午夜久久久久久久久| 97se亚洲国产综合在线| 久久免费的精品国产v∧| 日韩精品亚洲一区| 色综合久久久网| 国产欧美精品一区| 精品在线亚洲视频| 91精品蜜臀在线一区尤物| 亚洲欧美日韩一区二区| 国产一区免费电影| 91精品国产全国免费观看| 亚洲综合色噜噜狠狠| 96av麻豆蜜桃一区二区| 久久九九99视频| 美女看a上一区| 欧美老肥妇做.爰bbww视频| 亚洲欧洲综合另类| 成人午夜精品一区二区三区| www国产成人| 免费成人av在线播放| 精品视频1区2区| 亚洲一区免费视频| 在线观看日韩电影| 亚洲乱码日产精品bd| 91小视频在线免费看| 国产精品蜜臀av| 国产一区999| 久久精品一区八戒影视| 国产在线看一区| 精品国产网站在线观看| 久久成人综合网| 精品国产自在久精品国产| 看国产成人h片视频| 欧美一区二区三区播放老司机| 日本午夜一本久久久综合| 制服丝袜亚洲网站| 久久国产精品免费| 久久综合九色综合97婷婷女人 | 国内精品国产成人| 久久九九久久九九| 成人免费黄色大片| 国产精品免费视频一区| 99久久久免费精品国产一区二区| 亚洲欧洲精品一区二区三区不卡| 99视频精品在线| 亚洲一区二区三区在线看| 欧美精品在线一区二区三区| 婷婷久久综合九色综合绿巨人 | 精品播放一区二区| 懂色一区二区三区免费观看| 最新中文字幕一区二区三区 | 欧美成人伊人久久综合网| 免费国产亚洲视频| 久久久久久9999| www.欧美.com| 夜夜嗨av一区二区三区网页| 欧美剧情片在线观看| 久久成人羞羞网站| 国产精品久久久久久久蜜臀 | 宅男在线国产精品| 国产在线精品一区二区三区不卡| 久久久精品免费网站| 色婷婷精品大视频在线蜜桃视频| 亚洲制服丝袜av| 欧美大片日本大片免费观看| 成人av午夜电影| 日韩高清在线不卡|