Você não pode selecionar mais de 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
|
- #ifndef APP_CFG_H
- #define APP_CFG_H
-
- /*
- * uC/OS-II优先级数值越小,任务优先级越高。
- * 每个任务必须使用不同的优先级;0通常留给最紧急的系统任务。
- */
- #define APP_TASK_START_PRIO 5u
- #define APP_TASK_TEST_PRIO 6u
-
- /*
- * 任务栈大小的单位是OS_STK元素。当前OS_STK为32位,
- * 所以每个256元素的任务栈实际占用1024字节RAM。
- */
- #define APP_TASK_START_STK_SIZE 256u
- #define APP_TASK_TEST_STK_SIZE 256u
-
- #endif
|