User Activity

Posted on August 15, 2014 at 15:57I am using a STM32L series MCU. I am trying to trigger ADC at 16KHz with a TIM3 and later use DMA to store the ADC values in a buffer. The issue is that I am trying to test the ADC rate using a GPIO_Toggle in the AD...
Posted on August 08, 2014 at 17:29ADC resolution 12 bits(with 16 bit buffer) works but 8 bit(with 8bit buffer) results in the code going into an infinite loop in the DMA ISR. __IO uint8_t buffer[1000];/* ADC Config*/  ADC_StructInit(&ADC_InitStructu...
Posted on July 24, 2014 at 22:55Hi,I am trying to develop an application for STM32L series. I need to use DMA in double buffer mode. I found information in the reference manual for a double buffer circular mode which uses a single DMA buffer with ha...