app_cfg.h

来自「最新的uC/OS-II2.85」· C头文件 代码 · 共 38 行

H
38
字号
 /*
*********************************************************************************************************
*                                    APPLICATION SPECIFIC RTOS SETUP
*
*                                     (c) Copyright 2007, SUPERMAN
*                                          All Rights Reserved
*
*                                          CONFIGURATION FILE
*
* File : app_cfg.h
*********************************************************************************************************
*/

/*
*********************************************************************************************************
*                                            任务优先级
*********************************************************************************************************
*/
#define  APP_TASK_START_ID                      4
#define  APP_TASK_START_PRIO                    4

#define  OS_TASK_TMR_PRIO                       5

#define  APP_TASK_USER_IF_PRIO                  7
#define  APP_TASK_TEST_TIMER_PRIO               6

/*
*********************************************************************************************************
*                                              栈的大小
*                            Size of the task stacks (# of OS_STK entries)
*********************************************************************************************************
*/
#define  APP_TASK_START_STK_SIZE             1024

#define  APP_TASK_USER_IF_STK_SIZE            512

#define  APP_TASK_TEST_TIMER_STK_SIZE         512

⌨️ 快捷键说明

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