Replies: 1 comment 1 reply
-
There was https://github.com/esp-rs/esp-web-flash-server but it's more or less abandoned and will probably get archived (i.e. outdated) but you might get some inspiration from it |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
esp-web-tools allows to set up a simple web page to flash the binaries to the device without the need for a complete toolset (works from chrome and edge only though).
Need to provide a manifest.json similar to the below as well as binary files:
Since I'm using
cargo run
and everything magically happens, I don't really know what are really all the files that eventually get flashed to the device.is there a place that documents what exactly is getting flashed in case of a
esp-hal
project?I found that
cargo esp-flash --save-image
can generate a file, single file and not so many in the example above, so maybe that's what I need to supply instead of so many files?And if using that file, does it need to be flashed as is at offset
0
?I tried the above and I get an error from the esp-web-tools "Timed out waiting for packet header", and with the example binaries it is flashing, so it looks like it has to do with the binary I generated using
cargo esp-flash
. Any ideas what could be wrong?Beta Was this translation helpful? Give feedback.
All reactions