aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorGravatar Emil Fresk <emil.fresk@gmail.com> 2020-11-14 16:02:36 +0100
committerGravatar Emil Fresk <emil.fresk@gmail.com> 2020-11-14 16:02:36 +0100
commit243668df5424e047dbfe8c4151eef5c7ebc88dc1 (patch)
treee5175d99f6da1d540ab5180dff647cbbd30e3857 /src/lib.rs
parent2ebd81fee2dc4c793a7c684c5c9050d4a5313bde (diff)
downloadrtic-243668df5424e047dbfe8c4151eef5c7ebc88dc1.tar.gz
rtic-243668df5424e047dbfe8c4151eef5c7ebc88dc1.tar.zst
rtic-243668df5424e047dbfe8c4151eef5c7ebc88dc1.zip
Multilock support
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index a7d399cd..fc1991c6 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -43,7 +43,7 @@ use cortex_m::{
};
use cortex_m_rt as _; // vector table
pub use cortex_m_rtic_macros::app;
-pub use rtic_core::{Exclusive, Mutex};
+pub use rtic_core::{Exclusive, Mutex, prelude as mutex_prelude};
#[cfg(armv7m)]
pub mod cyccnt;