#ifndef PWM_H_ #define PWM_H_ #include "stm32f10x.h" // Config extern void init_PWM(TIM_TypeDef *Timer, int Channel); extern void PWM_Set_DutyCycle(TIM_TypeDef *Timer, int Channel, float DutyCycle_Percent); #endif