InputCapture.h 417 B

123456789101112131415161718192021222324252627
  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. #ifndef _INPUTCAPTURE_H_
  12. #define _INPUTCAPTURE_H_
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif // __cplusplus
  16. void IC_CountMaxISR(void);
  17. void IC_CadenceISR(void);
  18. void IC_BikeSpdISR(void);
  19. #ifdef __cplusplus
  20. }
  21. #endif // __cplusplus
  22. #endif