use ;
use UnsafeCell;
/// A wrapper around the `cortex_m::Mutex` that allows for mutable reference to be retrieved.
///
/// **Warning**: take care to make sure only a single mutable reference exists at the same time.
/// The CriticalSection ensures this for single core processors,
/// as long as they are not nested and no multiple borrows are fetched within the same section.
;