diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e0c25312..6dcd53038 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -30,6 +30,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - S3: Allow powering down RC_FAST_CLK (#796) - UART/ESP32: fix calculating FIFO counter with `get_rx_fifo_count()` (#804) +- Xtensa targets: Use ESP32Reset - not Reset (#823) ### Removed diff --git a/esp32-hal/ld/link-esp32.x b/esp32-hal/ld/link-esp32.x index 7e21094bd..ecce8956e 100644 --- a/esp32-hal/ld/link-esp32.x +++ b/esp32-hal/ld/link-esp32.x @@ -1,6 +1,6 @@ /* before memory.x to allow override */ -ENTRY(Reset) +ENTRY(ESP32Reset) /* after memory.x to allow override */ PROVIDE(__pre_init = DefaultPreInit); diff --git a/esp32s2-hal/ld/link-esp32s2.x b/esp32s2-hal/ld/link-esp32s2.x index 032d04c74..5f799f1c9 100644 --- a/esp32s2-hal/ld/link-esp32s2.x +++ b/esp32s2-hal/ld/link-esp32s2.x @@ -1,6 +1,6 @@ /* before memory.x to allow override */ -ENTRY(Reset) +ENTRY(ESP32Reset) /* after memory.x to allow override */ PROVIDE(__pre_init = DefaultPreInit); diff --git a/esp32s3-hal/ld/db-esp32s3.x b/esp32s3-hal/ld/db-esp32s3.x index 37bf06753..c846f78cb 100644 --- a/esp32s3-hal/ld/db-esp32s3.x +++ b/esp32s3-hal/ld/db-esp32s3.x @@ -1,5 +1,5 @@ /* before memory.x to allow override */ -ENTRY(Reset) +ENTRY(ESP32Reset) _stack_region_top = ABSOLUTE(ORIGIN(dram_seg))+LENGTH(dram_seg); _stack_region_bottom = _stack_end;