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