Hi,
I am trying to read 8 analog inputs using ADC in the TM4C1294 controller. in my design trigger to the ADC is from a timer and after completion of ADC conversion a DMA will copy the data to an array in my code. My plan is to keep the ADC conversion and data copy running in the background and use the ADC data in the array whenever I need it in the code. The DMA mode I am using is AUTO.
I could Implement this by setting the DMA transfer parameters and enabling DMA channel in an ISR each time after competing the transfer. Otherwise the DMA transfer is not happening after the first transfer.
My question is, is it possible to continue the transfer in the background without setting the transfer parameters and enabling the channel each time after completing a DMA transfer?
Is it possible to implement it if I am going for any other DMA mode?
Regards,
Sooraj