14 lines
213 B
C
14 lines
213 B
C
|
|
||
|
#ifndef FM_PWM_CONTORL_H_
|
||
|
#define FM_PWM_CONTORL_H_
|
||
|
|
||
|
#include "HD_TIM.h"
|
||
|
|
||
|
void pwm_Init(void);
|
||
|
void set_pwmDutyRatio(float DutyRatio);
|
||
|
void set_pwmPulse(uint32_t Pulse);
|
||
|
|
||
|
extern void chargControl(void);
|
||
|
|
||
|
#endif
|