📄 app_cfg.h
字号:
/*
*********************************************************************************************************
* 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -