2011-01-27 06:17 AM
STM32 PWM output blocked ?
#pwm-systick-dma-nvic #tim4 #pwm #pwm #stm32f #tim4 #stm32f103 #outputs2011-05-17 05:23 AM
2014-01-01 03:46 PM
I dont know how anyone in the multiple pwm timer examples for STM32 can manage to work the PWM-Output without enabling the PWM main-switch:
TIMx->BDTR |= TIM_BDTR_MOE; e.g. with this function: void TIM_CtrlPWMOutputs (TIM1, enable); In case there is no PWM available on the outputs, check that you have enabled this very important switch !!!!!2014-01-01 03:48 PM
I dont know how anyone in the multiple pwm timer examples for STM32 can manage to work the PWM-Output without enabling the PWM main-switch:
TIMx->BDTR |= TIM_BDTR_MOE;
e.g. with this function:
void
TIM_CtrlPWMOutputs (TIM1, enable);
In case there is no PWM available on the outputs, check that you have enabled this very important switch !!!!!
2014-01-01 05:14 PM
I dont know how anyone in the multiple pwm timer examples for STM32 can manage to work the PWM-Output without enabling the PWM main-switch:
Probably because it's only relevant for a specific sub-set of TIM units? @param TIMx: where x can be 1, 8, 15, 16 or 17 to select the TIMx peripheral.