From 0419def89b49c3a17991f777f0de08fe6a2ef524 Mon Sep 17 00:00:00 2001 From: jacqueline Date: Fri, 10 Nov 2023 08:18:35 +1100 Subject: Change lock switch direction to match r7 standby --- src/system_fsm/booting.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/system_fsm/booting.cpp') diff --git a/src/system_fsm/booting.cpp b/src/system_fsm/booting.cpp index affd3ebc..168bb960 100644 --- a/src/system_fsm/booting.cpp +++ b/src/system_fsm/booting.cpp @@ -114,9 +114,9 @@ auto Booting::react(const BootComplete& ev) -> void { ESP_LOGI(kTag, "bootup completely successfully"); if (sServices->gpios().Get(drivers::Gpios::Pin::kKeyLock)) { - transit(); - } else { transit(); + } else { + transit(); } } -- cgit v1.2.3