Posted on February 18, 2015 at 16:49
We are currently working on using the three ADCs on the STM32F407 to simultaneously sample three analog waveforms. Our target waveform is at about ~30Khz, but to illustrate our problem I have slowed the input...
Posted on February 18, 2015 at 21:08
That was precisely the issue. Changing
DMA_InitStructure.DMA_Mode = DMA_Mode_Circular; to
DMA_InitStructure.DMA_Mode = DMA_Mode_Normal; fixed it.
I'm amazed at how quickly you were a...