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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- ADC driver will now apply attenuation values to the correct ADC's channels. (#554)
- Sometimes half-duplex non-DMA SPI reads were reading garbage in non-release mode (#552)
- ESP32-C3: Fix GPIO5 ADC channel id (#562)
- ESP32-H2: Fix direct-boot feature

### Changed

Expand Down
2 changes: 1 addition & 1 deletion esp32h2-hal/ld/db-esp32h2-memory.x
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ MEMORY
/* 320K of on soc RAM, 16K reserved for cache */
ICACHE : ORIGIN = 0x40800000, LENGTH = 16K

RAM : ORIGIN = 0x40800000 + 32K, LENGTH = 320K - 16K
RAM : ORIGIN = 0x40800000 + 16K, LENGTH = 320K - 16K

/* External flash */
ROM : ORIGIN = 0x42000000, LENGTH = 0x400000
Expand Down