pub struct AtomicMutex<T> { /* private fields */ }Expand description
A simple atomic mutex for no_std environment.
It can be used in interrupt context.
But Most of the time, [critical-section::Mutex] is a better choice.
pub struct AtomicMutex<T> { /* private fields */ }A simple atomic mutex for no_std environment.
It can be used in interrupt context.
But Most of the time, [critical-section::Mutex] is a better choice.