Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

- Updated bootloaders with `release/v5.5` ones from IDF (#976)

### Fixed

- Corrected eFuse BLOCK0 definitions for ESP32-C2, ESP32-C3, and ESP32-S3 (#961)
Expand Down
11 changes: 8 additions & 3 deletions espflash/resources/README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
# Espflash Resources

The listed bootloaders from `espressif/esp-idf` were built with `release/v5.4` at commit `3ad3632`, using default settings:
https://github.com/espressif/esp-idf/tree/release/v5.4
The listed bootloaders from `espressif/esp-idf` were built with `release/v5.5` at commit `d66ebb8`, using default settings:
https://github.com/espressif/esp-idf/tree/release/v5.5

For now, `esp-hal` uses MMU page size as `0x10000` (64k) therefore the flash size has to be changed to 64MB.
For now, `esp-hal` uses MMU page size as `0x10000` (64k) for ESP32-C2, ESP32-C6 and ESP32-H2, therefore the flash size has to be changed to 64MB. This can be done in `menuconfig` with the `flash size` config or adding the following to the `sdkconfig` file:

```
CONFIG_ESPTOOLPY_FLASHSIZE_64MB=y
CONFIG_ESPTOOLPY_FLASHSIZE="64MB"
```

The flasher stubs are taken from the `espressif/esptool` repository:
https://github.com/espressif/esptool/tree/master/esptool/targets/stub_flasher/1
Binary file modified espflash/resources/bootloaders/esp32-bootloader.bin
Binary file not shown.
Binary file modified espflash/resources/bootloaders/esp32_26-bootloader.bin
Binary file not shown.
Binary file modified espflash/resources/bootloaders/esp32c2-bootloader.bin
Binary file not shown.
Binary file modified espflash/resources/bootloaders/esp32c2_26-bootloader.bin
Binary file not shown.
Binary file modified espflash/resources/bootloaders/esp32c3-bootloader.bin
Binary file not shown.
Binary file modified espflash/resources/bootloaders/esp32c5-bootloader.bin
Binary file not shown.
Binary file modified espflash/resources/bootloaders/esp32c6-bootloader.bin
Binary file not shown.
Binary file modified espflash/resources/bootloaders/esp32h2-bootloader.bin
Binary file not shown.
Binary file modified espflash/resources/bootloaders/esp32p4-bootloader.bin
Binary file not shown.
Binary file modified espflash/resources/bootloaders/esp32s2-bootloader.bin
Binary file not shown.
Binary file modified espflash/resources/bootloaders/esp32s3-bootloader.bin
Binary file not shown.