From 9ab41521ca0fd58f215562cc90dda78450edf60e Mon Sep 17 00:00:00 2001 From: Thomas Farstrike Date: Tue, 13 May 2025 14:11:50 +0200 Subject: [PATCH] main.py: install button handler in same thread for predictability --- internal_filesystem/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal_filesystem/main.py b/internal_filesystem/main.py index 754b4f59..64cd1253 100644 --- a/internal_filesystem/main.py +++ b/internal_filesystem/main.py @@ -12,7 +12,7 @@ except Exception as e: print("main.py: WARNING: could not import/run freezefs_mount_builtin: ", e) from mpos import apps -apps.execute_script_new_thread("builtin/system/button.py", True, False, False) # Button handling through IRQ +apps.execute_script("builtin/system/button.py", True, False, False) # Install button handler through IRQ apps.auto_connect() apps.restart_launcher()