STMF0 HAL ADC DMA buffer 16bit vs. 32bit
Posted on July 06, 2018 at 08:01If I declare the ADC-DMA dest buffer as static uint32_t adc32_dma [5];and call HAL_ADC_Start_DMA (&hadc, adc32_dma, 5);I get wrong results in dest buffer.If I declare the ADC-DMA dest buffer as static uint16_t a...