Sleep, stop and standby modes do not significantly reduce current consumption
Greetings,
I'm having an issue with low-power modes. I'm using a STM32U585 MCU and while in run mode it is consuming around 100mA, which is a lot. I tried to enter in Sleep, Stop and Standby modes right after the main declaration:
int main(void)
{
HAL_Init();
SystemPower_Config();
SystemClock_Config();
PeriphCommonClock_Config();
HAL_PWR_EnterSTOPMode(PWR_LOWPOWERREGULATOR_ON, PWR_SLEEPENTRY_WFI);
...The thing is, the current just drops from 100mA to 70mA, which is still a lot.
Any clue why the circuit is consuming so much current?
Thank you
