STM32F4 How to repeatedly enable/disable CHx and CHxN outputs
Posted on January 30, 2015 at 09:52 I would like to repeatedly enable/disable TIM1 CH1 and CH1x outputs. Here is my code. static u8 step = 1; switch(step) { case 1: TIM_SelectOCxM(TIM1, TIM_Channel_1, TIM_OCMode_PWM1); TIM_CCxCmd(TIM1...