Can I make each ADC channel ordered continuously when sampled using DMA?
I'm sampling a single ADC with 3 channels using DMA.Let's say the requested data size for each channel is 1024. So this is the code for starting DMA:uint16_t buffer[1024*3]; HAL_ADC_Start_DMA(&hadc1, buffer, 1024*3);Now when HAL_ADC_ConvCpltCallback(...