From 5f8ace8de6b6da8548607c4e3f2e7058667595e7 Mon Sep 17 00:00:00 2001 From: PoliEcho Date: Fri, 24 Apr 2026 17:03:30 +0200 Subject: [PATCH] move sleep to the end off update loop --- main.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.cc b/main.cc index 48b609c..f8a1d64 100644 --- a/main.cc +++ b/main.cc @@ -61,8 +61,8 @@ __attribute__((noreturn)) void core1_main(void) { while (1) { update_buttons(); - sleep_ms(1); update_inputs(); + sleep_ms(1); } }