123456789101112131415161718192021222324252627 |
- /**
- * @file sys_task.h
- * @author Xiao Lifan (xiaolf6@midea.com)
- * @brief 控制系统任务调度
- * @version 0.1
- * @date 2023-05-24
- *
- * @copyright Copyright (c) 2023
- *
- */
- #ifndef _SYS_TASK_H_
- #define _SYS_TASK_H_
- #ifdef __cplusplus
- extern "C" {
- #endif // __cplusplus
- void SysTaskBg();
- void SysTask1Ms();
- void SysTask10Ms();
- #ifdef __cplusplus
- }
- #endif // __cplusplus
- #endif
|