2023-03-20 11:49 PM
the below code is not working for me
//HAL_TIM_PWM_Start(&htim15,TIM_CHANNEL_1);
HAL_TIMEx_PWMN_Start(&htim15,TIM_CHANNEL_1);
Solved! Go to Solution.
2023-10-06 03:07 PM
Briefly, to enable timer on CH1N use HAL_TIMEx_PWMN_Start(), not HAL_TIME_PWM_Start().
I just wasted all evening before I figured this out.