Using ADC1 and ADC3 with DMA and timer
Hello everybody!
I am using STM32F429 as my central controller for a project. I need to read 20 ADCs and process the signals by the 10 kHz sampling-time. I am using 14 channels of ADC1 and 6 channel of ADC3. Before, I have done it for one ADC when I used a timer as trigger and DMA for transferring data. The timer triggered the ADC conversion and DMA transferred the data to a buffer. When the conversion was finished, by using "HAL_ADC_ConvCpltCallback(ADC_HandleTypeDef *hadc)" function I could get the ADC values and run the control loop.
Now I have two different ADCs and it seems it is complicated to use two DMAs and one timer as trigger. I would be so grateful if you could suggest a solution!
