1234567891011121314151617181920212223242526272829303132 |
- /**
- * @file InputCapture.h
- * @author
- * @brief
- * @version 0.1
- * @date 2023-05-24
- *
- * @copyright Copyright (c) 2023
- *
- */
- #include "typedefine.h"
- #ifndef _INPUTCAPTURE_H_
- #define _INPUTCAPTURE_H_
- #ifdef __cplusplus
- extern "C" {
- #endif // __cplusplus
- void ic_voBikeSensorCntMaxIsr(void);
- void ic_voCadenceIsr(void);
- void ic_voBikeSpdIsr(void);
- void ic_voHallCntMaxIsr(void);
- void ic_voHallCh1Isr(void);
- void ic_voHallCh2Isr(void);
- void ic_voHallCh3Isr(void);
- #ifdef __cplusplus
- }
- #endif // __cplusplus
- #endif
|