PWM signal generation with DMA through two channle there is not getting same pahse square wave
Hello , am using stm32f411 nucleo board.
uint32_t sin_table[2] = {
150, 250, 100}
HAL_TIM_PWM_Start_DMA(&htim1, TIM_CHANNEL_1, (uint32_t *)sin_table, 3)
HAL_TIM_PWM_Start_DMA(&htim1, TIM_CHANNEL_2, (uint32_t *)sin_table, 3);
I am giving this value to the ccr register
In PA8 and PA9 pin getting these PWM signal for the channel 1 and channel 2 corresspondily
but the square wave is not exact phase some phase shift why so ?

please help me ?
