Skip to content

Commit 0e21201

Browse files
committed
Changelog
1 parent 1ff3edf commit 0e21201

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

riscv-rt/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1515
linker will place this new section in `REGION_BSS`.
1616
- Additional feature `no-xie-xip` to work on chips without the XIE and XIP CSRs (e.g. ESP32-C2, ESP32-C3)
1717
- Additional feature `defmt` which will implement `defmt::Format` on certain types
18-
18+
- Additional feature `pre-default-start-trap` to execute custom code before `_default_start_trap`
1919
### Changed
2020

2121
- `main` function no longer needs to be close to `_start`. A linker script may copy

riscv-rt/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -600,7 +600,7 @@
600600
//!
601601
//! ## `pre-default-start-trap`
602602
//!
603-
//! This provides a mechanism to execute custom code prior to `default_start_trap`.
603+
//! This provides a mechanism to execute custom code prior to `_default_start_trap`.
604604
//!
605605
//! To use it, the user must define a symbol named `_pre_default_start_trap`, which the system will jump to.
606606
//! After executing the custom code, control should return by jumping to `_pre_default_start_trap_ret`.

0 commit comments

Comments
 (0)