i am trying to wakeup stm32lo from sleep mode by interrupt push button connected to pA3
HAL_SuspendTick(); /* Enter Sleep Mode, * */ HAL_PWR_EnterSLEEPMode(PWR_MAINREGULATOR_ON, PWR_SLEEPENTRY_WFI); /* Resume Tick interrupt if disabled prior to SLEEP mode entry */ HAL_ResumeTick();I HAVE THE ABOVE CO...