diff options
| author | Henrik Tjäder <henrik@tjaders.com> | 2020-10-02 09:43:03 +0000 |
|---|---|---|
| committer | Henrik Tjäder <henrik@tjaders.com> | 2020-10-02 09:43:03 +0000 |
| commit | 755bb191b6ccd9b3abeca7a0a9b02218caba3a99 (patch) | |
| tree | 11a8b27dd807577b826e4292a3d6c4fe3e8b0470 /src | |
| parent | e6bc673621093c72f932cc38043c9fa951745450 (diff) | |
| parent | 1e46ffdfbc4e2b088334e1730ba8bdfdaad33a2f (diff) | |
Merge branch 'mod_const' of github.com:AfoHT/cortex-m-rtic into mod_const
Diffstat (limited to 'src')
| -rw-r--r-- | src/export.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/export.rs b/src/export.rs index 8a5d4e3..27f7f5f 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::{ @@ -15,8 +16,6 @@ pub use cortex_m::{ use heapless::spsc::SingleCore; pub use heapless::{consts, i::Queue as iQueue, spsc::Queue}; pub use heapless::{i::BinaryHeap as iBinaryHeap, BinaryHeap}; -#[cfg(feature = "heterogeneous")] -pub use microamp::shared; pub type SCFQ<N> = Queue<u8, N, u8, SingleCore>; pub type SCRQ<T, N> = Queue<(T, u8), N, u8, SingleCore>; |
