aboutsummaryrefslogtreecommitdiff
path: root/rtic-sync/src/lib.rs
blob: 90afff63b399fd941685007db169471710676730 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Synchronization primitives for asynchronous contexts.

#![no_std]
#![deny(missing_docs)]

#[cfg(feature = "defmt-03")]
use defmt_03 as defmt;

pub mod arbiter;
pub mod channel;
pub use portable_atomic;

#[cfg(test)]
#[macro_use]
extern crate std;