Posted on December 19, 2014 at 11:09Are there any informations on the bandwidth of the ADC on the STM32F302? Is the ADC stage suitable for undersampling? #bandwidth #stm32 #adc
Posted on July 16, 2014 at 10:33
I am using a F401 to read 1024 Samples with 40ksps and it works fine so I hope that the code is ok.
DMA_INIT.DMA_Channel = DMA_Channel_0;
DMA_INIT.DMA_PeripheralBaseAddr = (uint32_t)ADC1_RDR;
DMA_INIT.DMA_...
Posted on July 16, 2014 at 15:49I don't think that the injected mode is right for my application. I want to measure the other channels a few times (for averaging) after the main measurement, if possible without reconfiguring the ADC and DMA before e...