Question
PWM Complimentory signal is not getting with HAL_TIM_PWM_Start_DMA
Hello experts
I am trying to make a PWM signal from DMA , with PWM + complimentory channel
When i use HAL API
HAL_TIM_PWM_Start_DMA(&htim1, TIM_CHANNEL_1, (uint32_t *)sin_table, 32);
// Here I get the signal as expected
But when I Use HAL API
HAL_TIMEx_PWMN_Start_DMA(&htim1, TIM_CHANNEL_1, (uint32_t *)sin_table, 32);
// It not driving the CH1N channel nothing getting
Whats the problem