mirror of
https://github.com/esp-rs/esp-hal.git
synced 2025-10-02 14:44:42 +00:00
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:
parent
0064766ef2
commit
94cd593a45
@ -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
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
|
||||
/* before memory.x to allow override */
|
||||
ENTRY(Reset)
|
||||
ENTRY(ESP32Reset)
|
||||
|
||||
/* after memory.x to allow override */
|
||||
PROVIDE(__pre_init = DefaultPreInit);
|
||||
|
@ -1,6 +1,6 @@
|
||||
|
||||
/* before memory.x to allow override */
|
||||
ENTRY(Reset)
|
||||
ENTRY(ESP32Reset)
|
||||
|
||||
/* after memory.x to allow override */
|
||||
PROVIDE(__pre_init = DefaultPreInit);
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user