-
Notifications
You must be signed in to change notification settings - Fork 65
Description
Hi,
I succesfully build the lvgl_micropython for an ESP32 with PSRAM. I was able to integrate my own ext_mod by adding the c code directory to /ext_mod
and adding an extra rule to micropython.cmake
.
Now, I have two questions:
-
How could I build a firmware supporting more than 1 display and/or touch driver (e.g. ili9341 and ft7789 and XT2046 and cst816s)? Can I manually add them just before final compilation, or is there a smarter way?
-
I would like to add some .py modules to be included as frozen modules (.mpy) in the firmware. When I just add them to
/lib/micropython/ports/esp32/modules
, I do see them endig up in the firmware (when viewing in hexdump), but when usinghelp('modules')
they do not show up. How would I get my own forzen modules succesfully integrated?
I like the single make.py that loads, extracts, and build all in one go!
regards,
Stefan