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: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- [Windows] Fixed a crash in monitor when espflash is connected via USB Serial/JTAG, and the user is typing into the monitor but the device is not reading serial input. (#943)
- [Linux/MacOS] Fixed espflash hanging when espflash is connected via USB Serial/JTAG, and the user is typing into the monitor but the device is not reading serial input. (#944, #945)

- Fixed ESP32-S2 flash size detection issues (#950)

### Removed

Expand Down
2 changes: 1 addition & 1 deletion espflash/src/target/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -872,7 +872,7 @@ impl Chip {
miso_length_offset: Some(0x28),
},
Chip::Esp32s2 => SpiRegisters {
base: 0x3f40_3000,
base: 0x3f40_2000,
Copy link
Member Author

@SergioGasquez SergioGasquez Sep 17, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

usr_offset: 0x18,
usr1_offset: 0x1c,
usr2_offset: 0x20,
Expand Down
Loading