Question
ADC Low power - consumption
Hello,
I have a custom PCB with stm32L562 on it. I'm able to put it low power run mode.
My consumption is 0.2mA, but if I init ADC the consumption jums to 0.3mA.
I've tried to deinit it before going to stop 1 mode but it does not help
HAL_ADC_Stop(&hadc1);
HAL_ADC_DeInit(&hadc1);
HAL_ADCEx_RegularStop(&hadc1);
HAL_ADC_DeInit(&hadc1);Can you please somebody help me how to completely deinit ADC?
Thank you
