chargeController/APP/functionalModule/Inc/FM_TIM.h

17 lines
301 B
C
Raw Normal View History

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