Call HAL_ADC_GetValue at any time.
I am using the ADC on an STM32 microcontroller.
The ADC is operated in ContinuousConvMode.
Can I start it with HAL_ADC_Start and query it at any time with HAL_ADC_GetValue?
Or may HAL_ADC_GetValue only be used if it is ensured that the ADC is not currently performing a measurement?
So start ADC and as soon as the measurement is finished read out using HAL_ADC_GetValue and start with HAL_ADC_Start.
My concern is that I want to make sure that there is no problem if HAL_ADC_GetValue is called, but the ad converter is currently storing its measured value.
