No PWM output after switching to STM32G473
I am migrating a project from STM32F373 to STM32G473. I can program the new part successfully, but I don't see PWM . The PWM values are written in user created code and I can read them back via the STLink, so I know that the part at least begins running. I'm not sure if there are new settings that may be defaulting to the wrong values that are preventing outputs. (I see only 0v for PWM) I configured everything via CubeMX and I added the below user code to enable the timer What might cause me to not see any PWM output?
HAL_TIM_Base_Start(&htim8);
HAL_TIM_PWM_Start(&htim8,TIM_CHANNEL_3);
HAL_TIM_PWM_Start(&htim8,TIM_CHANNEL_4);
