mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 12:12:50 +01:00
update docs (#977)
Add notice for systems without native CAS operations
This commit is contained in:
parent
67c22862f6
commit
d81c3758d5
1 changed files with 5 additions and 0 deletions
|
@ -1,6 +1,11 @@
|
||||||
//! In-tree implementations of the [`rtic_time::Monotonic`] (reexported) trait for
|
//! In-tree implementations of the [`rtic_time::Monotonic`] (reexported) trait for
|
||||||
//! timers & clocks found on commonly used microcontrollers.
|
//! timers & clocks found on commonly used microcontrollers.
|
||||||
//!
|
//!
|
||||||
|
//! If you are using a microcontroller where CAS operations are not available natively, you might
|
||||||
|
//! have to enable the `critical-section` or `unsafe-assume-single-core` feature of the
|
||||||
|
//! [`portable-atomic`](https://docs.rs/portable-atomic/latest/portable_atomic/) dependency
|
||||||
|
//! yourself for this dependency to compile.
|
||||||
|
//!
|
||||||
//! To enable the implementations, you must enable a feature for the specific MCU you're targeting.
|
//! To enable the implementations, you must enable a feature for the specific MCU you're targeting.
|
||||||
//!
|
//!
|
||||||
//! # Cortex-M Systick
|
//! # Cortex-M Systick
|
||||||
|
|
Loading…
Reference in a new issue