| 123456789101112131415161718192021222324 |
- #ifndef _BSP_V8M_PWM_H_
- #define _BSP_V8M_PWM_H_
- #include <stdint.h>
- #define V8M_PWM_CH1 1
- #define V8M_PWM_CH2 2
- #define V8M_PWM_CH3 3
- #define V8M_PWM_CH4 4
- #define V8M_PWM_CH5 5
- #define V8M_PWM_CH6 6
- #define V8M_PWM_CH7 7
- #define V8M_PWM_CH8 8
- #define V8M_PWM_CH9 9
- #define V8M_PWM_CH10 10
- void Bsp_V8M_PwmInit(void);
- void Bsp_V8M_PwmSetCHValue(uint8_t chNum , uint16_t value);
- uint16_t Bsp_V8M_PwmGetCHValue(uint8_t m_ch);
- #endif
|