diff options
| author | Emil Fresk <emil.fresk@gmail.com> | 2020-12-12 23:24:54 +0100 |
|---|---|---|
| committer | Emil Fresk <emil.fresk@gmail.com> | 2020-12-12 23:24:54 +0100 |
| commit | 8e8ec9b7b879adae8d4de6cb2320b9b19290a7e0 (patch) | |
| tree | 73f8c0664b9af8a9d98f54aabcd6ea6cd59a6765 /src/lib.rs | |
| parent | 97a48983d2859740983cbf342e1287182426ed44 (diff) | |
Monotonic codegen now passing compile stage
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -35,12 +35,10 @@ // #![deny(warnings)] #![no_std] -use core::ops::Sub; - use cortex_m::{interrupt::Nr, peripheral::NVIC}; pub use cortex_m_rtic_macros::app; pub use rtic_core::{ - monotonic::{Clock, Instant, Monotonic}, + monotonic::{self, Clock, Duration, Instant, Monotonic}, prelude as mutex_prelude, Exclusive, Mutex, }; |
