I own an esp-wrover-kit 4.1. But I don’t have access to a linux PC this weekend.
Could someone please send me a .bin file?
I will use esptool as in the example :
esptool.py --chip esp32 --port /dev/ttyUSB0 erase_flash
From then on program the firmware starting at address 0x1000:
esptool.py --chip esp32 --port /dev/ttyUSB0 --baud 460800 write_flash -z 0x1000 esp32-20190125-v1.10.bin
I look forward to using littlevGL with micropython
It would be a different bin file for ESP32/STM32/Linux.
In fact, today we even need different versions for ESP32 depending whether color mode is 32bit or 16bit.
We can consider creating a github action that generates these bin files every time a new LVGL version is published.
In fact, we already create the Linux version as part of the CI tests today, but that’s the easiest.
Creating the ESP32 version would be a little more difficult because we would need to install Xtensa toolchain and esp-idf, but probably still doable.
I don’t know about the STM32 version.
Also, I think it would be useful to automatically generate and deploy the online (javascript) version as well. It is not up to date last time I checked. @embeddedt do you think it’s doable?