/***************************************************************** ;Project: Light ;MCU: ;Date: ;File: ;Function: ******************************************************************/ #ifndef __TASKRUN_H #define __TASKRUN_H /*---------------------------------------------------------------*/ #include "ARMCM0.h" /*---------------------------------------------------------------*/ //函数声明 extern void (*TaskRunProcess)(void); /*声明一个函数指针 */ void TaskRunInit(void); void TaskRun(void); #endif /*---------------------------------------------------------------*/