ivmarkov / rust-esp32-std-demo

Rust on ESP32 STD demo app. A demo STD binary crate for the ESP32[XX] and ESP-IDF, which connects to WiFi, Ethernet, drives a small HTTP server and draws on a LED screen.
Apache License 2.0
784 stars 105 forks source link

Use cargo espflash instead of esptool for qemu image generation #82

Closed svenstaro closed 2 years ago

svenstaro commented 2 years ago

Currently qemu.sh depends on esptool.py and that means we also have to carry the manually pre-generated stuff in qemu-bins/. This is somewhat inelegant and I've had good success using cargo espflash instead. I'd like to propose a PR for this after my current work is merged which is required for this to work: https://github.com/esp-rs/espflash/pull/160 and https://github.com/esp-rs/espflash/pull/162. What do you think?

ivmarkov commented 2 years ago

Moving to espflash is of course very welcome!