InputCapture.h 520 B

1234567891011121314151617181920212223242526272829303132
  1. /**
  2. * @file InputCapture.h
  3. * @author
  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_voBikeSensorCntMaxIsr(void);
  18. void ic_voCadenceIsr(void);
  19. void ic_voBikeSpdIsr(void);
  20. void ic_voHallCntMaxIsr(void);
  21. void ic_voHallCh1Isr(void);
  22. void ic_voHallCh2Isr(void);
  23. void ic_voHallCh3Isr(void);
  24. #ifdef __cplusplus
  25. }
  26. #endif // __cplusplus
  27. #endif