Question
STM32WL55 - ADC conversion time
Hello everyone!
I'm working on STM32WL55JCI7 board and trying to run ADC at the fastest speed (min total conversion time mention on datasheet 0.4uSec) and I don't receive this time.
My configuration is the following:

And to measure total time of conversion I'm using GPIO as RT check like the following:
//Turn GPIO on
HAL_GPIO_WritePin(GPIOC, GPIO_PIN_4, GPIO_PIN_SET);
// Start ADC conversion, function reutrn
HAL_ADC_Start(&hadc);
/* Wait till conversion is done */
while(LL_ADC_REG_IsConversionOngoing(hadc.Instance) == 0UL);
//Turn GPIO off
HAL_GPIO_WritePin(GPIOC, GPIO_PIN_4, GPIO_PIN_RESET);
Result (via scope) is 2.1uSec total time.
Also my optimization of C/C++ builder setting is optimize for speed.
Any advice how to run ADC at maximum speed?
BTW, when trying to change to Sync clock divide by 1 getting the following error:

Any advice how to run ADC at maximum speed?
BTW, when trying to change to Sync clock divide by 1 getting the following error:

I'll appreciate your help!
Thanks!
