How to wake-up from Standby mode with RTC?
Hi guys, I want to wake up my MCU every 10 sec. And I had to write some code as follows: if(__HAL_PWR_GET_FLAG(PWR_FLAG_SB) != RESET) { __HAL_PWR_CLEAR_FLAG(PWR_FLAG_SB); sprintf((char*)uartBuf, "wakeup from standby\n"); HAL...