pub type CortexMMutex<T> = Mutex<RefCell<T>>;Expand description
Alias for a Cortex-M mutex.
Based on cortex_m::interrupt::Mutex. This mutex works by disabling
interrupts while the mutex is locked.
This type is only available with the cortex-m feature.
Aliased Type§
pub struct CortexMMutex<T> { /* private fields */ }Trait Implementations§
Source§impl<T> BusMutex for CortexMMutex<T>
Available on crate feature cortex-m only.
impl<T> BusMutex for CortexMMutex<T>
Available on crate feature
cortex-m only.