How to get the values from multi channels using one ADC block
Hi,I am trying to get two voltages using two channels with one ADC block.My MUC is STM32F103RB. The followings are configruation of ADC and my program code.HAL_ADC_Start(&hadc2);for(;;) { ret = HAL_ADC_PollForConversion(&hadc2, 100); if(ret == HAL_O...