We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 194c740 commit 2385f07Copy full SHA for 2385f07
internal_filesystem/main.py
@@ -54,7 +54,7 @@ def custom_exception_handler(e):
54
55
import sys
56
if sys.platform == "esp32":
57
- 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?
58
else:
59
mpos.ui.th = task_handler.TaskHandler(duration=5) # 5ms is recommended for MicroPython+LVGL on desktop (less results in lower framerate)
60
0 commit comments