Is there impossible to start PWM DMA on several channels of same timer in HAL?
I want to start PWM DMA on channels 2 and 3 of TIM2, but I've found that it is possible to start only one DMA per timer. My MCU is stm32f103 series and my code is:HAL_TIM_PWM_Start_DMA(&htim2, TIM_CHANNEL_2, (uint32_t*)&send_buff_one , 16); HAL_TIM_P...