2014-06-25 04:00 AM
I want know if is possible to wakeup the MCU(STM32F4) fromstandby power mode with only the Wakeup pin, without setting the RTC allarm.
i have try this but the MCU don't wakeup.HAL_EnableDBGStandbyMode();
HAL_PWR_DisableWakeUpPin( PWR_WAKEUP_PIN1 );
__HAL_PWR_CLEAR_FLAG(PWR_FLAG_WU);
/* Enable WKUP pin */
HAL_PWR_EnableWakeUpPin(PWR_WAKEUP_PIN1);
/* Request to enter STANDBY mode (Wake Up flag is cleared in HAL_PWR_EnterSTANDBYMode function) */
HAL_PWR_EnterSTANDBYMode();
if i use the ST example code with wakeup from Pin or RTC allarm the mcu wakeup correctly, so i don't think there are hardware problem.
#standby-wakeup-pin
2022-10-24 04:03 PM
The particular issue of the original topic is most likely the issue 1 in my article.
@MHein , @Albert Aviles , @AStal.1
2023-11-14 07:14 PM
The problem has been solved,if you solved, can you share the answer with me, thank you!