Skip to content

LowPower.shutdown(1000); does not work as expected #126

@alexceltare2

Description

@alexceltare2

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

No one assigned

    Labels

    bug 🐛Something isn't working

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions