From b54a58ab23d3a029664b2e32d7f68cfe6fd1aaab Mon Sep 17 00:00:00 2001 From: Thomas Farstrike Date: Fri, 7 Nov 2025 10:54:10 +0100 Subject: [PATCH] boot_unix.py: reduce resolution and debug --- internal_filesystem/boot_unix.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/internal_filesystem/boot_unix.py b/internal_filesystem/boot_unix.py index 3c908905..16e3db28 100644 --- a/internal_filesystem/boot_unix.py +++ b/internal_filesystem/boot_unix.py @@ -20,12 +20,12 @@ TFT_HOR_RES=320 TFT_VER_RES=240 # Fri3d Camp 2024 Badge: -TFT_HOR_RES=296 -TFT_VER_RES=240 +#TFT_HOR_RES=296 +#TFT_VER_RES=240 # Bigger screen -TFT_HOR_RES=640 -TFT_VER_RES=480 +#TFT_HOR_RES=640 +#TFT_VER_RES=480 # 4:3 DVD resolution: #TFT_HOR_RES=720 @@ -64,7 +64,7 @@ def catch_escape_key(indev, indev_data): #state = indev_data.state #print(f"indev_data: {state} and {key}") # this catches the previous key release instead of the next key press pressed, code = sdlkeyboard._get_key() # get the current key and state - print(f"catch_escape_key caught: {pressed}, {code}") + #print(f"catch_escape_key caught: {pressed}, {code}") if pressed == 1 and code == 27: mpos.ui.back_screen() elif pressed == 1 and code == lv.KEY.RIGHT: