Posted on June 18, 2014 at 08:49
Dear Community!
I'm using DMA to transfer the ADC1 results (100 consecutive data) to some incremented memory address. DMA is in Normal mode (not circular), it is transfering 100 data, repeatedly over time....
Posted on August 06, 2014 at 13:09In my application I'm measuring an analog signal continuously - ADC is continuously triggered by a Timer -, but I only need some consecutive data at a given time; at this time I restart the DMA in normal mode and so...
Posted on August 05, 2014 at 13:25
It seems I found the solution: first you have to disable the ADC before reconfiguring the DMA.
Now the code is the following (not yet optimized, but working):
ADC_Cmd(ADC1, DISABLE);
DMA_Cmd(D...