Skip to content
Open
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

### Fixed

- Corrected eFuse BLOCK0 definitions for ESP32-C2, ESP32-C3, and ESP32-S3 (#961)

### Removed

## [4.2.0] - 2025-10-13
Expand Down
6 changes: 3 additions & 3 deletions espflash/src/target/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -386,14 +386,14 @@ impl Chip {
pub fn block0_offset(&self) -> u32 {
match self {
Chip::Esp32 => 0x0,
Chip::Esp32c2 => 0x35,
Chip::Esp32c3 => 0x2D,
Chip::Esp32c2 => 0x2C,
Chip::Esp32c3 => 0x2C,
Chip::Esp32c5 => 0x2C,
Chip::Esp32c6 => 0x2C,
Chip::Esp32h2 => 0x2C,
Chip::Esp32p4 => 0x2C,
Chip::Esp32s2 => 0x2C,
Chip::Esp32s3 => 0x2D,
Chip::Esp32s3 => 0x2C,
}
}

Expand Down
Loading