adc fails to initialize
Board: stm32h753zi nucleo
Firmware & CubeMX: latest version
I have configured the adc to continous conversion and DMA output. The initialization fails in main.c in HAL_ADC_INIT. I stepped through the HAL lib and saw that LL_ADC_IsInternalRegulatorEnabled returns the HAL_ERROR.
The docstring of this function says
/* Verification that ADC voltage regulator is correctly enabled, whether */
/* or not ADC is coming from state reset (if any potential problem of */
/* clocking, voltage regulator would not be enabled). */
if (LL_ADC_IsInternalRegulatorEnabled(hadc->Instance) == 0UL)I do not find any documents online which describe how the clock frequency of the adc should be set up. Could you please give me a hint.
