Question on ADC with DMA circular mode
Posted on February 06, 2017 at 19:12Hi everyone,I'm a newbie and I'm working on ADC with DMA in circular mode like pictures below:and a part of my code is:HAL_ADC_Start_DMA(&hadc1,(uint32_t*)buffer,sizeof(buffer));while(1){for(i=0;i<=255;i){}}When I...