Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![no_std]
#![cfg_attr(docsrs, feature(doc_cfg))]

mod critical_section;
mod ext;
mod target;

pub use bare_metal::Mutex;
pub use critical_section::CriticalSection;
pub use ext::*;
pub use target::{get_mask, set_mask};

pub const MASK_ALL: u32 = u32::MAX;