Question
STM32F446ZE doesn't enter in Standby mode
Hi,
I am using Standby mode on STM32F446ZE, but I faced with a problem. Sometimes MCU doesn't enter in this mode. Exiting Standby mode via RTC wakeup.
Below is present steps which I perform for entering Standby
SCB->SCR |= 0x00000004;
PWR->CR |= 0x00000002;
PWR->CR |= 0x00000004;
__WFI();
Could you check if it is correct?
