2024-12-06 13:23:28 +00:00
|
|
|
|
|
|
|
#ifndef FM_PWM_CONTORL_H_
|
|
|
|
#define FM_PWM_CONTORL_H_
|
|
|
|
|
|
|
|
#include "HD_TIM.h"
|
|
|
|
|
2024-12-07 09:52:46 +00:00
|
|
|
void tim_Init(void);
|
|
|
|
void pwm_Stop(void);
|
2024-12-06 13:23:28 +00:00
|
|
|
void set_pwmDutyRatio(float DutyRatio);
|
|
|
|
void set_pwmPulse(uint32_t Pulse);
|
|
|
|
|
|
|
|
extern void chargControl(void);
|
2024-12-07 09:52:46 +00:00
|
|
|
extern void checkAbnormal(void);
|
2024-12-06 13:23:28 +00:00
|
|
|
|
|
|
|
#endif
|