00001 #ifndef TASKB_H 00002 #define TASKB_H 00003 00004 #define TASKB_STACK_SIZE 128 00005 00006 typedef struct{ 00007 U8 State; 00008 U16 Timer; 00009 }TASKB_CONTROL; 00010 00011 extern OS_STACK TaskbStack[TASKB_STACK_SIZE]; 00012 extern U8 TaskbName[]; 00013 extern TASKB_CONTROL TaskbCtrl; 00014 void TaskBInit(void); 00015 void TaskB(void); 00016 00017 #endif 00018