[Solved] PWM TIM1 output randomly dropping out when modulating the frequency
Solution: the ARPE bit was not set in the CR1. TIM1->CR1 |= 0x0080; solved the problem.Dear community,I am experiencing with an issue using TIM1 as a PWM timer. It all works fine, I can set the frequency and duty cycle with TIM1->ARR and TIM1->CCR1. ...