Question
Double signal on PWM driven by DMA
Just trying to set PWM with DMA
Buffer which I try to use as duty cycle
uint16_t BUF_DMA[6] = {3, 4, 2, 7, 9, 1}; PWM is started by button
HAL_TIM_PWM_Start_DMA(&htim1,TIM_CHANNEL_4,(uint32_t*)&BUF_DMA, 6);Output I get

I can't understand why BUF_DMA[3] and BUF_DMA[5] are doubling and tripling.
