Question
Unable to start PWM on STM32G491
I am unable to start a PWM signal on my Nucleo board --> I was not able to observe a signal on an oscilloscope.
Please see the following code and Cube configurations.
1) Is the following code all that is necessary to start a PWM on a channel (given it is configured correctly in IOC)?
2) I confirmed that I am connected to the right pin by toggling a GPIO prior to configuring for PWM
HAL_TIM_PWM_Start(&htim2,TIM_CHANNEL_1);
TIM2->CCR1 = 30;
