/*******************设置任务优先级*******************/
#define STARTUP_TASK_PRIO 3
#define TASK_ADC_SAMPLE_PRIO 4
#define TASK_LED1_PRIO 6
#define TASK_LED2_PRIO 7
#define TASK_LED3_PRIO 8
#define TASK_GUI_TOUCH_PRIO 12
#define TASK_GUI_PRIO 13
/************设置栈大小(单位为 OS_STK )************/
#define STARTUP_TASK_STK_SIZE 100
#define TASK_ADC_Sample_STK_SIZE 256
#define TASK_LED1_STK_SIZE 80
#define TASK_LED2_STK_SIZE 80
#define TASK_LED3_STK_SIZE 80
#define TASK_GUI_STK_SIZE 500
#define TASK_GUI_Touch_STK_SIZE 80
不知道怎样设置栈大小和任务优先级。uc/os中任务优先级和栈的大小该怎样设置? |