lvgl-micropython / lvgl_micropython

LVGL module for MicroPython
MIT License
71 stars 23 forks source link

Building for ESP32 S3 Fails #138

Open Type-32 opened 1 day ago

Type-32 commented 1 day ago

Full Output of Terminal on MacOS Sequoia 15.1 Dev Beta and logs as well

idf_py_stderr_output_50151.log idf_py_stderr_output_50618.log idf_py_stdout_output_50151.log idf_py_stdout_output_50618.log terminal.log

kdschlosser commented 1 day ago

There is no display driver for ili9433. I will have to add it.

Type-32 commented 16 hours ago

I thought I was using DISPLAY=ili9341 ? I ran python3 make.py esp32 BOARD=ESP32_GENERIC_S3 BOARD_VARIANT=SPIRAM_OCT DISPLAY=ili9341 INDEV=gt911 and it gives me the similar "failure with exit code from ninja."

Here's log for running that line of command idf_py_stdout_output_1155.log idf_py_stderr_output_1155.log the stderr output file log seems to have nothing in it.

kdschlosser commented 5 hours ago

line 477 in the terminal.log file.

RuntimeError: Display not found "ili9433"

Type-32 commented 3 hours ago

apologies for that, that was my fault. that was the output for the command when I ran it the first time, which I corrected in the subsequent times running the command, eventually coming down to python3 make.py esp32 BOARD=ESP32_GENERIC_S3 BOARD_VARIANT=SPIRAM_OCT DISPLAY=ili9341 INDEV=gt911.

I thought I was using DISPLAY=ili9341 ? I ran python3 make.py esp32 BOARD=ESP32_GENERIC_S3 BOARD_VARIANT=SPIRAM_OCT DISPLAY=ili9341 INDEV=gt911 and it gives me the similar "failure with exit code from ninja."

Here's log for running that line of command idf_py_stdout_output_1155.log idf_py_stderr_output_1155.log the stderr output file log seems to have nothing in it.

The line of command basically did not work and I tried setting INDEV to xpt2046 as well but also didn't work and didn't find a firmware.bin or bootloader.bin in the output folders. By this point I'm pretty sure I'm looking somewhere wrong...