rtic_sync/
lib.rs

1//! Synchronization primitives for asynchronous contexts.
2
3#![cfg_attr(not(loom), no_std)]
4#![deny(missing_docs)]
5
6#[cfg(feature = "defmt-03")]
7use defmt_03 as defmt;
8
9pub mod arbiter;
10pub mod channel;
11pub use portable_atomic;
12pub mod signal;
13
14mod unsafecell;
15
16#[cfg(test)]
17#[macro_use]
18extern crate std;
19
20#[cfg(loom)]
21mod loom_cs;