Question
HAL fails to switch VRef from internal to external H743
Changing VRef source would seem simple, but it doesn't work, there is no change in the levels the ADC records.
__HAL_RCC_VREF_CLK_ENABLE();
HAL_SYSCFG_DisableVREFBUF(); // Disable the Internal Voltage Reference buffer, uses external 3.3v
HAL_SYSCFG_VREFBUF_HighImpedanceConfig(SYSCFG_VREFBUF_HIGH_IMPEDANCE_ENABLE);
What could stop this code from switching from Internal to external VRef+?
