Is there a way to use DMA with multiple ADCs at the same time?
I know you can scan multiple channels on one ADC, but I currently use 5 different ADCs on my STM32G4.
I use the HAL library function HAL_ADC_Start_DMA()
. Do I have to stop the DMA request to the ADC to request from other? I tried to do HAL_ADC_Start_DMA()
on all ADCs, but the code gets stuck on the second one, even when the first ADC is DMA1 and second ADC is DMA2.