STM32L053 discovery standby
Posted on July 20, 2015 at 21:42I write some code that seems to successfully put the chip into standby mode: PWR->CR |= PWR_CR_PDDS; SCB->SCR |= SCB_SCR_SLEEPDEEP; while (1) { __asm(''WFI'')__; }That seems to stop everything as expected. Wh...