Question
STM32F0 ADC error
I have an ADC issue with the STM32F0. Looked all through the HAL docs and not sure what the error is. I can't get the ADC to complete a conversion or if it does only the first call. When I debug with the ADC calibration call, it goes to a fault. When I try sampling it with polling it doesn't update (I'm guessing because the conversion never completes). If I start it with the interrupt call, it never services the interrupt because I'm guessing the conversion never completes.
Everything was setup in CubeMX as below

My attempt to get the ADC value (also not sure if I should be calling to handle &hadc3, but result is the same with no ADC value)
[code]
HAL_Delay(1);
HAL_ADC_Start(&hadc1);
// Poll ADC1 Perihperal & TimeOut = 1mSec
HAL_ADC_PollForConversion(&hadc1, 10);
// Read The ADC Conversion Result & Map It To PWM DutyCycle
AD_RES = HAL_ADC_GetValue(&hadc1);
HAL_ADC_Stop(&hadc1);
[/code]
