From 9a6db7da90404e91cb5c4a158f72e92d9e58c159 Mon Sep 17 00:00:00 2001 From: Thomas Farstrike Date: Tue, 29 Apr 2025 13:10:38 +0200 Subject: [PATCH] Compiled boot.py and main.py work using symlinks --- internal_filesystem/boot.py | 1 - internal_filesystem/main.py | 3 +++ manifest.py | 4 ++-- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/internal_filesystem/boot.py b/internal_filesystem/boot.py index acb97e5c..fb8989b1 100644 --- a/internal_filesystem/boot.py +++ b/internal_filesystem/boot.py @@ -4,7 +4,6 @@ import lcd_bus import machine import cst816s import i2c -import urequests import lvgl as lv import task_handler diff --git a/internal_filesystem/main.py b/internal_filesystem/main.py index 565483f2..dc6ae021 100644 --- a/internal_filesystem/main.py +++ b/internal_filesystem/main.py @@ -1,3 +1,6 @@ +import lvgl as lv +import task_handler + # Constants CURRENT_VERSION = "0.0.1" TFT_HOR_RES=320 diff --git a/manifest.py b/manifest.py index 10a34ac4..e13b6c5f 100644 --- a/manifest.py +++ b/manifest.py @@ -1,3 +1,3 @@ freeze('', 'include_in_build.py') -freeze('', 'internal_filesystem/boot.py', 'boot.py') -freeze('', 'internal_filesystem/main.py', 'main.py') +freeze('', 'boot.py') +freeze('', 'main.py')