Multichannel ADC reading
Posted on August 16, 2016 at 18:31Hi,I am trying to read two adc channels number 10 and 11 with cubemx output. I can read the 10th channel with this code:HAL_ADC_Start(&hadc1);HAL_ADC_PollForConversion(&hadc1,10);value_adc=HAL_ADC_GetValue(&hadc1);H...