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

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

?? os_cfg.h

?? 沒有開發板也可以學ARM。ucos-ii與ZLG-GUI的GBA移植
?? 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
*Modified: Xiawei   <xiawei0311@gmail.com>
*
* 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               0    /* Enable(1) debug variables                                    */

#define OS_VIEW_MODULE			  0	   /* uC/OS-View is present (1) or not (0)                         */

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

#define OS_LOWEST_PRIO           63    /* 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             20    /* 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          10    /* Set the number of ticks in one second                        */


                                       /* --------------------- TASK STACK SIZE ---------------------- */
#define OS_TASK_TMR_STK_SIZE     64    /* Timer      task stack size (# of OS_STK wide entries)        */
#define OS_TASK_STAT_STK_SIZE    64    /* Statistics task stack size (# of OS_STK wide entries)        */
#define OS_TASK_IDLE_STK_SIZE    64    /* 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     0    /*     Include code for OSTaskCreateExt()                       */
#define OS_TASK_DEL_EN            1    /*     Include code for OSTaskDel()                             */
#define OS_TASK_NAME_SIZE         8    /*     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   0    /*     Check task stacks from statistic task                    */
#define OS_TASK_SUSPEND_EN        1    /*     Include code for OSTaskSuspend() and OSTaskResume()      */
#define OS_TASK_SW_HOOK_EN        0    /*     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        32    /*     Determine the size of the name of an event flag group    */
#define OS_FLAGS_NBITS            8    /*     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         32    /*     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_TASK_TMR_PRIO		  6
#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     2    /*     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一区二区三区免费野_久草精品视频
亚洲欧美另类图片小说| 精品欧美乱码久久久久久| 亚洲国产综合91精品麻豆| 日韩亚洲欧美在线| 91亚洲精华国产精华精华液| 亚洲午夜三级在线| 国产视频一区在线观看| 欧美日韩国产一二三| 丁香婷婷综合色啪| 日韩av中文字幕一区二区三区| 久久久精品免费观看| 欧美日韩aaa| 91亚洲精品久久久蜜桃网站| 国产一区啦啦啦在线观看| 亚洲超丰满肉感bbw| 最新高清无码专区| 久久综合成人精品亚洲另类欧美| 欧美日韩国产片| 92国产精品观看| 成人激情文学综合网| 激情综合色播激情啊| 久久亚洲精华国产精华液| av一区二区三区四区| 久久精品免费观看| 亚洲综合图片区| 久久综合九色综合欧美亚洲| 欧美日韩午夜影院| 一本色道久久加勒比精品| 国产精品99久久久| 九九在线精品视频| 日本成人中文字幕| 午夜电影一区二区| 亚洲一区在线观看免费| 亚洲男同性视频| 国产精品久久久久一区二区三区共 | 日韩欧美第一区| 91精品国产福利| 欧美一区二区三区四区在线观看| 欧美酷刑日本凌虐凌虐| 欧美私模裸体表演在线观看| 日本二三区不卡| 欧美性做爰猛烈叫床潮| 国产午夜精品久久| 亚洲一级二级三级| 老司机午夜精品99久久| 老司机免费视频一区二区| 国产专区综合网| 欧美视频一区在线观看| 精品sm在线观看| 亚洲色图色小说| 裸体歌舞表演一区二区| 国产成人亚洲综合a∨婷婷图片 | 蜜臀精品久久久久久蜜臀| 五月婷婷激情综合| 轻轻草成人在线| 精品在线一区二区三区| 国产精品一区二区三区99| 国产黄人亚洲片| 成人午夜视频网站| 色视频成人在线观看免| 欧美日韩高清影院| 日韩精品一区二区三区中文不卡| 精品日韩欧美在线| 国产精品美女久久久久久久久| 国产精品福利在线播放| 亚洲综合网站在线观看| 蜜臀av性久久久久蜜臀av麻豆| 韩国av一区二区三区四区| av亚洲精华国产精华| 色激情天天射综合网| 91精品国产麻豆| 国产欧美精品区一区二区三区| 中文字幕日本乱码精品影院| 亚洲va欧美va人人爽午夜| 久久精品国产精品亚洲精品| 成人综合在线观看| 欧美性大战久久久久久久蜜臀| 日韩欧美视频在线| ...xxx性欧美| 亚洲成人一区二区在线观看| 麻豆一区二区99久久久久| 成人动漫在线一区| 91麻豆精品国产| 国产精品福利一区二区三区| 婷婷丁香激情综合| 国产精品99久久久久久似苏梦涵| 99国产精品国产精品毛片| 欧美另类久久久品| 国产精品视频线看| 日日骚欧美日韩| 99久久夜色精品国产网站| 91精品国产高清一区二区三区蜜臀| 国产精品久久久久久久久久免费看| 亚洲国产日韩a在线播放| 麻豆精品一二三| 91麻豆免费在线观看| 精品国产乱码久久久久久蜜臀 | 国产精品视频免费| 91免费国产在线| 日本中文字幕一区| 免费在线观看一区| 国产中文一区二区三区| 亚洲va韩国va欧美va精品| 成人av网站在线| 国产一区二区三区不卡在线观看 | 亚洲久草在线视频| 日韩中文字幕91| 欧美剧在线免费观看网站| 1000部国产精品成人观看| 国产精品18久久久久久久久| 日韩久久一区二区| 欧美午夜宅男影院| 欧美日韩国产色站一区二区三区| 日韩电影在线观看网站| 一区二区三区精品视频在线| 欧美经典一区二区| 国产精品久久看| 亚洲欧美日韩一区二区三区在线观看| 亚洲三级在线免费观看| 亚洲乱码中文字幕| 午夜精品久久一牛影视| 日韩av在线发布| 激情综合网天天干| av亚洲精华国产精华精| 欧美日韩免费视频| 91精品久久久久久久99蜜桃| 777亚洲妇女| 91激情五月电影| 欧美性一二三区| 在线观看av一区二区| av在线播放成人| 色综合久久中文综合久久97| 成人av电影观看| 欧美日韩精品三区| 欧美日韩精品一区视频| 欧美精品九九99久久| 在线亚洲一区观看| 精品国产伦一区二区三区观看方式| 丰满亚洲少妇av| 在线视频国内一区二区| 国产欧美日韩在线| 国产精品2024| 国产精品视频免费| 99麻豆久久久国产精品免费| 中文字幕一区二区日韩精品绯色| 粉嫩高潮美女一区二区三区 | 粉嫩av一区二区三区粉嫩 | 中文字幕在线一区免费| 成人av中文字幕| 中文字幕日韩av资源站| 99re在线精品| 亚洲一区二区视频在线观看| 欧美在线三级电影| 天天综合日日夜夜精品| 91精品国产美女浴室洗澡无遮挡| 蜜桃精品视频在线| 久久婷婷综合激情| 成人免费观看视频| 亚洲精品老司机| 欧美精选一区二区| 精久久久久久久久久久| 亚洲国产成人私人影院tom| 成人av电影观看| 欧美三级午夜理伦三级中视频| 欧美色图天堂网| 欧美一区二区三区思思人| 久久在线观看免费| 最近中文字幕一区二区三区| 蜜乳av一区二区| 在线看国产一区二区| 日韩女优视频免费观看| 亚洲一二三级电影| 91亚洲男人天堂| 久久久久综合网| 日韩中文欧美在线| 日本电影欧美片| 欧美经典一区二区| 国产亚洲一区二区在线观看| 99久久99久久精品免费观看| 亚洲国产成人av网| www日韩大片| 欧美最猛黑人xxxxx猛交| 麻豆91小视频| 亚洲乱码精品一二三四区日韩在线| 欧美高清一级片在线| 国产成人在线免费观看| 亚洲韩国精品一区| 亚洲国产精品黑人久久久| 欧美肥大bbwbbw高潮| 成人午夜av电影| 肉色丝袜一区二区| 成人欧美一区二区三区视频网页| 欧美一区二区三级| 色综合久久综合中文综合网| 蜜臀av性久久久久蜜臀aⅴ四虎 | 成人的网站免费观看| 日韩精品一二区| 1区2区3区精品视频| 精品欧美乱码久久久久久1区2区| 在线视频你懂得一区|