I'm using stm32u575ZI-Q and trying to configure the ADC using LL drivers and it isn't starting ON (ADCRDY =0), Need help on missing piece or mistake that I'm doing here.
void ADC_Driver_InitializeADC(void) { peripheralADC1Init(); ADC_Activate(); } void peripheralADC1Init(void) { LL_ADC_SetTriggerFrequencyMode(ADC1, LL_ADC_TRIGGER_FREQ_HIGH); // Structure for some features of ADC common parameters and mul...