Skip to content

Commit 8390759

Browse files
committed
chore: changelog entry
1 parent c0920e5 commit 8390759

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

rtic/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ Example:
2626
- Placate clippy
2727
- Updated esp32c3 dependency to v0.27.0
2828
- Allow software tasks to be diverging (return `!`) and give them `'static` context.
29+
- Added more `unsafe` blocks and migrated to 2024 edition.
2930

3031
### Added
3132

rtic/src/export/slic.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ pub mod interrupt {
1717

1818
#[inline]
1919
pub unsafe fn enable() {
20-
riscv_slic::enable();
20+
unsafe { riscv_slic::enable() };
2121
}
2222
}

0 commit comments

Comments
 (0)