aboutsummaryrefslogtreecommitdiff
path: root/src/export.rs
diff options
context:
space:
mode:
authorEmil Fresk <emil.fresk@gmail.com>2021-02-18 19:30:59 +0100
committerEmil Fresk <emil.fresk@gmail.com>2021-02-18 19:30:59 +0100
commitebf2f058a4d2a1fcf118144b9893dc3038939bad (patch)
tree11c7b828cc380737de36e6ab77edbd63bf42a72e /src/export.rs
parentb57ef0bf9d836ad031e4a4f7930162003128dc74 (diff)
Now with new monotonic trait and crate
Diffstat (limited to 'src/export.rs')
-rw-r--r--src/export.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/export.rs b/src/export.rs
index ab5984e..91a4a5e 100644
--- a/src/export.rs
+++ b/src/export.rs
@@ -16,7 +16,7 @@ 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};
-pub use rtic_core::monotonic::Monotonic;
+pub use rtic_monotonic as monotonic;
pub type SCFQ<N> = Queue<u8, N, u8, SingleCore>;
pub type SCRQ<T, N> = Queue<(T, u8), N, u8, SingleCore>;
@@ -116,7 +116,7 @@ where
#[inline(always)]
pub fn assert_monotonic<T>()
where
- T: Monotonic,
+ T: monotonic::Monotonic,
{
}