/* * taskdef.h * * Created on: 2023-4-20 * Author: xukaiming */ #ifndef _TASK_CFG_H_ #define _TASK_CFG_H_ #ifdef __cplusplus extern "C" { #endif #define AL_STATIC #define TASK_NAME_LEN 16 #define MAX_TIMER 5 // the number of timer can be used #define TICK_PER_S 1000 //1S中打点1000次 #ifdef __cplusplus } #endif #endif