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 336bfc6 commit b0a2647Copy full SHA for b0a2647
src/lib.rs
@@ -9,6 +9,14 @@
9
//!
10
//! # Optional features
11
12
+//! ## `critical-section-single-core`
13
+//!
14
+//! This feature enables a [`critical-section`](https://github.com/rust-embedded/critical-section)
15
+//! implementation suitable for single-core targets, based on disabling interrupt globally.
16
17
+//! It is **unsound** to enable it on multi-core targets. You should use a target-specific
18
+//! implementation that synchronizes all cores instead, typically provided by the HAL crate.
19
20
//! ## `cm7-r0p1`
21
22
//! This feature enables workarounds for errata found on Cortex-M7 chips with revision r0p1. Some
0 commit comments