Resolved! STM32F303RE Tim2 ch2 PWM Mode
Hi everyone, I'm trying to use the Timer2 CH2 PWM Mode 1 to generate a 1 Hz signal with 50% Duty Cycle out of my PA0 pin but i can't get anything. Here's my code:#include"stm32f3xx.h" void TIM_PWM(void); int main(void){ TIM_PWM(); while(1){ } }...