Resolved! stm32g071rb problem with PWM generation using TIM1 and PA8 pin
Hello, I'm studing timers with stm32g071rb and I wanna generate a PWM signal using PA8 pin.At the moment I write this code:GPIOA->MODER &= 0xeffcffff;GPIOA->MODER |= 2<<16; //alternate function mode for PA8GPIOA->OSPEEDR |= 1<<17; //PA8 at high speed...