-
Notifications
You must be signed in to change notification settings - Fork 55
Closed
stm32duino/STM32RTC
#119Labels
bug 🐛Something isn't workingSomething isn't working
Description
Describe the bug
The MCU should wake up after the RTC Timer interrupt tick but it doesn't. LED stays off on this mode. Other modes like LowPower.idle(1000), LowPower.sleep(1000), LowPower.deepSleep(1000) work as intended.
Steps to reproduce the behavior:
void loop() {
digitalWrite(LED_BUILTIN, HIGH);
LowPower.shutdown(1000);
digitalWrite(LED_BUILTIN, LOW);
LowPower.shutdown(1000);
}
Expected behavior
LED Blinks every 1000ms.
Desktop (please complete the following information):
- OS: Windows
- Arduino IDE version: 2.3.5
- STM32 core version: 2.10.1
- Library version: latest
- Tools menu settings if not the default:
- Upload method: Mass Storage
Hardware (please complete the following information):
- Board Name: Nucleo U385RG-Q
Metadata
Metadata
Assignees
Labels
bug 🐛Something isn't workingSomething isn't working