Sergio Gasquez Arcos
Sergio Gasquez Arcos
Do you know how this should be done? Is there any way to automate uploading the artifact from CI when doing the release?
> ## Bug description > `espup install` downloads ZIP diles to location under rustup. > > ` Downloading file 'C:\Users\georgik\.rustup\toolchains\esp\riscv32-esp-elf\esp-12.2.0_20230208/riscv32-esp-elf.zip' from 'https://github.com/espressif/crosstool-NG/releases/download/esp-12.2.0_20230208/riscv32-esp-elf-12.2.0_20230208-x86_64-w64-mingw32.zip'` > > Prefered location should be `%IDF_TOOLS_PATH%/dist`. This...
The point of this issue is to reuse what ESP-IDF has already installed if the user has `IDF_TOOLS_PATH` defined.
cc: @noppej
Thanks for the quick investigation and workarround (will give it a shot tomorrow morning)! I'll keep the repo as long as its needed.
> @SergioGasquez Are you open to updating your test case to use the new `esp-hal`? [migration notes here](https://github.com/esp-rs/esp-hal/releases/tag/v0.16.0) > > I should have something for you to test your breakpoints...
Hi! The default `SPI Flash Size` is 4MB, that's the reason of the first log. Do you mind enabling debug logs `RUST_LOG=debug espflash...` so we see logs like the [`spi_autodetect`](https://github.com/esp-rs/espflash/blob/main/espflash/src/flasher/mod.rs#L726-L766)?...
Hello @t-moe, could you try reproducing the behavior with `esptool` and enabling debug logs as suggested?
> How do I have to adapt my steps to test the thing with esptool? Thank you I think the steps would be the following: 1. ``` esptool.py --chip esp32c6...
I've done some investigation. And compared esptool with espflash. Using your elf, I can generate the binary with espflash: ``` ❯ espflash save-image --chip esp32c6 --flash-size 8mb text.bin Chip type:...