start.h 447 Bytes
#ifndef _START_H
#define _START_H
//定义线程优先级以及大小

#define START_TASK_PRIO		14
#define START_STK_SIZE		128

#define IO_TASK_PRIO 		8
#define IO_STK_SIZE		64		

#define LOGIC_TASK_PRIO		9
#define LOGIC_STK_SIZE		1800

#define MSG_TASK_PRIO	10
#define MSG_STK_SIZE	300

#define ACT_TASK_PRIO	11
#define ACT_STK_SIZE	300

#define OUTPUT_TASK_PRIO	12
#define OUTPUT_STK_SIZE	128

#define SET_TASK_PRIO		13
#define SET_STK_SIZE		200


#endif