diff options
| author | Emil Fresk <emil.fresk@gmail.com> | 2020-12-10 20:33:13 +0100 |
|---|---|---|
| committer | Emil Fresk <emil.fresk@gmail.com> | 2020-12-10 20:33:13 +0100 |
| commit | 97a48983d2859740983cbf342e1287182426ed44 (patch) | |
| tree | 77c9fb55d1ad9cd3fa2e9343397c56ba47928684 /src/lib.rs | |
| parent | b23bb1192c8dc1f2e8f157db2147b1737abc1033 (diff) | |
More work
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -39,7 +39,10 @@ use core::ops::Sub; use cortex_m::{interrupt::Nr, peripheral::NVIC}; pub use cortex_m_rtic_macros::app; -pub use rtic_core::{prelude as mutex_prelude, Exclusive, monotonic::Monotonic, Mutex}; +pub use rtic_core::{ + monotonic::{Clock, Instant, Monotonic}, + prelude as mutex_prelude, Exclusive, Mutex, +}; #[doc(hidden)] pub mod export; |
