Make sure to use ESP32Reset - not Reset as entry (#823)

* Make sure to use ESP32Reset - not Reset as entry

* Add CHANGELOG.md entry
This commit is contained in:
Björn Quentin 2023-09-27 16:13:17 +02:00 committed by GitHub
parent 0064766ef2
commit 94cd593a45
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 3 deletions

View File

@ -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

View File

@ -1,6 +1,6 @@
/* before memory.x to allow override */
ENTRY(Reset)
ENTRY(ESP32Reset)
/* after memory.x to allow override */
PROVIDE(__pre_init = DefaultPreInit);

View File

@ -1,6 +1,6 @@
/* before memory.x to allow override */
ENTRY(Reset)
ENTRY(ESP32Reset)
/* after memory.x to allow override */
PROVIDE(__pre_init = DefaultPreInit);

View File

@ -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;