optimize image.compress func and fix lvgl build error

This commit is contained in:
Neucrack
2024-05-13 14:35:40 +08:00
parent e39450b49e
commit 171bd4a2ff
5 changed files with 6 additions and 20 deletions

View File

@@ -90,6 +90,8 @@ def find_valid_components(components):
depends[name] = []
for r in match:
if r in components:
if name == r:
continue
depends[name].append(r)
# find main depends
def get_depend_recursive(name):