diff options
author | 2020-10-01 20:01:25 +0200 | |
---|---|---|
committer | 2020-10-01 20:01:25 +0200 | |
commit | fb61a78cdd99e27914cc355f721c04d901dd3ae4 (patch) | |
tree | 15ed9c4d9db6023f667c2d5c863fa1b8b0a4d12d /src/export.rs | |
parent | 4d61437bb4debea5adc578ee072bff3619d8077b (diff) | |
download | rtic-fb61a78cdd99e27914cc355f721c04d901dd3ae4.tar.gz rtic-fb61a78cdd99e27914cc355f721c04d901dd3ae4.tar.zst rtic-fb61a78cdd99e27914cc355f721c04d901dd3ae4.zip |
Added `bare_metal::CriticalSection` to `init::Context`
Diffstat (limited to 'src/export.rs')
-rw-r--r-- | src/export.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/export.rs b/src/export.rs index 8a5d4e3e..1e64941f 100644 --- a/src/export.rs +++ b/src/export.rs @@ -4,6 +4,7 @@ use core::{ }; pub use crate::tq::{NotReady, TimerQueue}; +pub use bare_metal::CriticalSection; #[cfg(armv7m)] pub use cortex_m::register::basepri; pub use cortex_m::{ |