STM32LowPower
STM32LowPower copied to clipboard
Arduino Low Power library for STM32
Have a next situation: - BI = PA0 - STM32F103C8T6 (hand-made board) - PlatformIO IDE ``` LowPower.begin(); LowPower.attachInterruptWakeup(BI, _INT0, FALLING, SHUTDOWN_MODE); LowPower.shutdown(0); ``` _INT0 is a function that simply sets...
Fix LowPower Sleep Mode: * fix: restore Main regulator on LowPower Sleep exit * fix: in case of LowPower Sleep, it is necessary to decrease CPU Frequency Fixes https://github.com/stm32duino/STM32LowPower/issues/73
I am using Nucleo stml412kb with the STM32LowPower library. I wanted to wake my MCU from sleep mode for every external interrupt. I used one of the examples that is...
Are there any plans for implementing the `enableWakeupFrom(TwoWire ...)` function? This would be very useful to have!
For some mcu's they come with LPTIM peripherals which are more flexible and lower power consumption than RTC for low power applications. will STM32LowPower library support LPTIM peripherals. Maybe I...
thank you sir for the amazing work, this is rather a request. I am currenty working on a project, where my STM32L0 should wake up from timed alarm and wakeup...
**Describe the bug** Using the unmodified example AlarmTimedWakeup.ino from the library and Seeed Lora-E5 Mini board, after the first wake up from deepsleep there is no output on the serial...
I tried the TimedWakeUp example on Nucleo-L476 and found the user LED blinking very fast, not like it should. The very same example works well on Nucle-L073 some additional findings:...