i would like to know, how to use ADC1 in stm32f103c8t6 - blue pill - in scan multichannel continous mode conversion mode without interrupt..
that's it.. say i have 4 channels (PA0 , pA1 , PA2 , pA3)..what i need is : in the while(1) loop i put 4 variables, and keep reading the data registers , and because it's in continous mode, so the 4 variables keep updating in the backgroud, how can i do that ?! i already done the driver and tested it with one channel and it worked great. but in case of 4 channels , the readings are the same while the supposed not..the problem i think is that data overrun occur to data register so i keep reading the value of one channel only and put it in the 4 variabnles..
so the question is.. how can i stop the adc after each conversion till i read the data register then continue with the second channel , third , forth .. then repeat in order. is that possible ? thanks.