2017-07-19 06:38 AM
Hello All,
I am trying to put my MCU into stand by mode and then wake him up with RTC alarm. I am pretty sure that this part is working for me. My problem is that when the MCU wakes up it doesn't continue to execute the code from the line bellow HAL_PWR_EnterSTANDBYMode() , it seems like it's starting to execute the code from the start of the main function and then it doesn't execute all the code, it's just executes few lines and seems like it's getting stuck in a loop.
Any ideas on what am i doing wrong ?
Thanks !!
#stm32f4-rtc #stm32f4 #stm32f4-wakeupSolved! Go to Solution.
2017-07-19 11:00 AM
Hello David!!
This is not a problem!!
The only way to exit from STBY mode is to perform a reset. (by wkup pins, RTC, RST pin. .etc).
Just Read the Refernce manual .. Low Power Modes (Entering and Exiting)
2017-07-19 11:00 AM
Hello David!!
This is not a problem!!
The only way to exit from STBY mode is to perform a reset. (by wkup pins, RTC, RST pin. .etc).
Just Read the Refernce manual .. Low Power Modes (Entering and Exiting)
2017-07-20 04:26 AM
Thank you !!
2017-07-20 04:32 AM
David Lichterov wrote:
Thank you !!