InputCapture.h 441 B

12345678910111213141516171819202122232425262728
  1. /**
  2. * @file sys_task.h
  3. * @author Xiao Lifan (xiaolf6@midea.com)
  4. * @brief 控制系统任务调度
  5. * @version 0.1
  6. * @date 2023-05-24
  7. *
  8. * @copyright Copyright (c) 2023
  9. *
  10. */
  11. #include "typedefine.h"
  12. #ifndef _INPUTCAPTURE_H_
  13. #define _INPUTCAPTURE_H_
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif // __cplusplus
  17. void IC_CountMaxISR(void);
  18. void IC_CadenceISR(void);
  19. void IC_BikeSpdISR(void);
  20. #ifdef __cplusplus
  21. }
  22. #endif // __cplusplus
  23. #endif