diff options
| author | Emil Fresk <emil.fresk@gmail.com> | 2021-02-18 19:30:59 +0100 |
|---|---|---|
| committer | Emil Fresk <emil.fresk@gmail.com> | 2021-02-18 19:30:59 +0100 |
| commit | ebf2f058a4d2a1fcf118144b9893dc3038939bad (patch) | |
| tree | 11c7b828cc380737de36e6ab77edbd63bf42a72e /src/lib.rs | |
| parent | b57ef0bf9d836ad031e4a4f7930162003128dc74 (diff) | |
Now with new monotonic trait and crate
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -37,10 +37,8 @@ use cortex_m::{interrupt::InterruptNumber, peripheral::NVIC}; pub use cortex_m_rtic_macros::app; -pub use rtic_core::{ - monotonic::{self, embedded_time as time, Monotonic}, - prelude as mutex_prelude, Exclusive, Mutex, -}; +pub use rtic_core::{prelude as mutex_prelude, Exclusive, Mutex}; +pub use rtic_monotonic::{self, embedded_time as time, Monotonic}; #[doc(hidden)] pub mod export; |
