Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
- #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
-
- /* The short-profile pulse IRQ needs more than the port's 128-word default. */
- #define OS_CPU_EXCEPT_STK_SIZE 256u
-
- #endif
|