We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32b4204 commit 8f73b3eCopy full SHA for 8f73b3e
internal_filesystem/main.py
@@ -6,6 +6,7 @@
6
fs_drv = lv.fs_drv_t()
7
fs_driver.fs_register(fs_drv, 'M')
8
9
+import mpos.apps
10
import mpos.ui
11
12
RED = lv.palette_main(lv.PALETTE.RED)
@@ -26,10 +27,10 @@
26
27
mpos.ui.handle_top_swipe()
28
mpos.ui.th = task_handler.TaskHandler(duration=5) # 5ms is recommended for MicroPython+LVGL on desktop
29
-# Maybe this should only be done if there is not already a "builtin" folder... with the expected apps/4apps
30
try:
31
import freezefs_mount_builtin
32
except Exception as e:
33
+ # This will throw an exception if there is already a "/builtin" folder present
34
print("main.py: WARNING: could not import/run freezefs_mount_builtin: ", e)
35
36
from mpos import apps
0 commit comments