From 2385f076ba529b02a99a407fb423fe6e0636912b Mon Sep 17 00:00:00 2001 From: Thomas Farstrike Date: Mon, 10 Nov 2025 08:10:08 +0100 Subject: [PATCH] Change task_handler period back to 5ms Just to be safe, as the framerate is fine currently. --- 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 3e012e55..34bb2efc 100644 --- a/internal_filesystem/main.py +++ b/internal_filesystem/main.py @@ -54,7 +54,7 @@ def custom_exception_handler(e): import sys if sys.platform == "esp32": - mpos.ui.th = task_handler.TaskHandler(duration=1) # 1ms gives highest framerate on esp32-s3's + mpos.ui.th = task_handler.TaskHandler(duration=5) # 1ms gives highest framerate on esp32-s3's but might have side effects? else: mpos.ui.th = task_handler.TaskHandler(duration=5) # 5ms is recommended for MicroPython+LVGL on desktop (less results in lower framerate)