Skip to content

Commit b54a58a

Browse files
boot_unix.py: reduce resolution and debug
1 parent 73713d8 commit b54a58a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

internal_filesystem/boot_unix.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@
2020
TFT_VER_RES=240
2121

2222
# Fri3d Camp 2024 Badge:
23-
TFT_HOR_RES=296
24-
TFT_VER_RES=240
23+
#TFT_HOR_RES=296
24+
#TFT_VER_RES=240
2525

2626
# Bigger screen
27-
TFT_HOR_RES=640
28-
TFT_VER_RES=480
27+
#TFT_HOR_RES=640
28+
#TFT_VER_RES=480
2929

3030
# 4:3 DVD resolution:
3131
#TFT_HOR_RES=720
@@ -64,7 +64,7 @@ def catch_escape_key(indev, indev_data):
6464
#state = indev_data.state
6565
#print(f"indev_data: {state} and {key}") # this catches the previous key release instead of the next key press
6666
pressed, code = sdlkeyboard._get_key() # get the current key and state
67-
print(f"catch_escape_key caught: {pressed}, {code}")
67+
#print(f"catch_escape_key caught: {pressed}, {code}")
6868
if pressed == 1 and code == 27:
6969
mpos.ui.back_screen()
7070
elif pressed == 1 and code == lv.KEY.RIGHT:

0 commit comments

Comments
 (0)