We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0920e5 commit 8390759Copy full SHA for 8390759
rtic/CHANGELOG.md
@@ -26,6 +26,7 @@ Example:
26
- Placate clippy
27
- Updated esp32c3 dependency to v0.27.0
28
- Allow software tasks to be diverging (return `!`) and give them `'static` context.
29
+- Added more `unsafe` blocks and migrated to 2024 edition.
30
31
### Added
32
rtic/src/export/slic.rs
@@ -17,6 +17,6 @@ pub mod interrupt {
17
18
#[inline]
19
pub unsafe fn enable() {
20
- riscv_slic::enable();
+ unsafe { riscv_slic::enable() };
21
}
22
0 commit comments