9 lines
311 B
C
9 lines
311 B
C
#include "stm32f1xx_ll_bus.h" // Pour l'activation des horloges
|
|
#include "stm32f1xx_ll_tim.h"
|
|
|
|
|
|
void MyPWM_Conf_Output(TIM_TypeDef * Timer, int channel);
|
|
|
|
void MyPWM_Conf_Input(TIM_TypeDef * Timer, int channel1, int channel2);
|
|
|
|
void MyPWM_Set_Impulse_Duration(TIM_TypeDef * Timer, int Percentage, int channel);
|