Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ee7d835

Browse files
Fix esp32s2 spi register base address (#950)
* fix: S2 spi reg base address * docs: Update changelog
1 parent 6dc2b9a commit ee7d835

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1818

1919
- [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)
2020
- [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)
21-
21+
- Fixed ESP32-S2 flash size detection issues (#950)
2222

2323
### Removed
2424

espflash/src/target/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -872,7 +872,7 @@ impl Chip {
872872
miso_length_offset: Some(0x28),
873873
},
874874
Chip::Esp32s2 => SpiRegisters {
875-
base: 0x3f40_3000,
875+
base: 0x3f40_2000,
876876
usr_offset: 0x18,
877877
usr1_offset: 0x1c,
878878
usr2_offset: 0x20,

0 commit comments

Comments
 (0)