HAL_TIM_PWM_Start(&htim3, TIM_CHANNEL_1);
HAL_TIM_PWM_Start(&htim3, TIM_CHANNEL_2);
TIM3->CCR1 =25000;
I'm trying to set 2 pins to the same PWM signal at the same time. However, it doesn't work. Only 1 pin (channel 1) has PWM output and the 2nd pin (channe 2) has empty output.