os_cfg.h

来自「uCOS的源码例子」· C头文件 代码 · 共 34 行

H
34
字号
/*
*********************************************************************************************************
*                                                 uC/OS
*                                          The Real-Time Kernel
*
*                                           CONFIGURATION FILE
*
*                                       Philips Semiconductors, Inc.
*                                             XA (Large Model)
*
* File : OS_CFG.H
*********************************************************************************************************
*/

/*
*********************************************************************************************************
*                                          uC/OS CONFIGURATION
*********************************************************************************************************
*/

#define OS_MAX_TASKS             63    /* Maximum number of tasks in your application                  */
#define OS_MAX_EVENTS            64    /* Maximum number of event control blocks in your application   */
#define OS_MAX_QS                16    /* Maximum number of queue control blocks in your application   */

#define OS_IDLE_TASK_STK_SIZE    50    /* Idle task stack size (WORDs)                                 */
#define OS_IDLE_TASK_STK_TOP     49    /* Index into idle task top of stack                            */

#define OS_TASK_CHANGE_PRIO_EN    1    /* Include code for OSTaskChangePrio()                          */
#define OS_TASK_DEL_EN            1    /* Include code for OSTaskDel()                                 */
#define OS_SEM_EN                 1    /* Include code for SEMAPHORES                                  */
#define OS_MBOX_EN                1    /* Include code for MAILBOXES                                   */
#define OS_Q_EN                   1    /* Include code for QUEUES                                      */
#define OS_TASK_SUSPEND_EN        1    /* Include code for OSTaskSuspend() and OSTaskResume()          */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?