Using ADC in interrupt mode, using callback HAL_ADC_ConvCpltCallback() to read values from two channels. But I am getting OVR error.
I place a break point in the callback HAL_ADC_ConvCpltCallback() and the first time it is entered EOC, EOS, OVR are all set. So I have already missed reading a conversion. How are mulitple values read using interrupts. After reading through the docs the call back should be entered at any eoc, eos or ovr. So I would expect the callback to be called twice each time I start a conversion using HAL_ADC_Start_IT(&hadc) since i am scanning two channels.
Thanks for any light you can shed on this.
