Question
Is it possible to update more than 1 DMA stream on the TIMx_UP DMA request (STM32H7B0)
Is it possible to update more than 1 DMA stream on a "timer up" DMA request (TIMx_UP)?
I am using an STM32H7B0 with the HAL library and can initialize and start the timer/dma interrupt for one DMA request but can more be introduced for the TIMx_UP interrupt?
DMA_HandleTypeDef hdma_timx_up;
hdma_timx_up.Instance = DMAx_Streamx.
...
HAL_DMA_Init(&hdma_timx_up)
start (for GPIO toggling)
HAL_DMA_Start_IT(htimx.hdma[TIM_DMA_ID_UPDATE], (uint32_t) dmaarray, (uint32_t) &(GPIOx->BSRR), dmalen);