diff options
| author | Emil Fresk <emil.fresk@gmail.com> | 2021-03-14 21:27:21 +0100 |
|---|---|---|
| committer | Emil Fresk <emil.fresk@gmail.com> | 2021-03-20 08:19:56 +0100 |
| commit | 53c407017f50d0fde17d38afed714b2fcb54194b (patch) | |
| tree | ed4e5a8b95896e07e0a6d4209844665d9a678324 /src/lib.rs | |
| parent | 1087f2ee64a5be1aedf3b702ccb5d86cc64708d9 (diff) | |
Cancel and reschedule working
Support cfgs in the imports
Account for extern tasks
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -32,7 +32,7 @@ #![deny(missing_docs)] #![deny(rust_2018_compatibility)] #![deny(rust_2018_idioms)] -#![deny(warnings)] +// #![deny(warnings)] #![no_std] use cortex_m::{interrupt::InterruptNumber, peripheral::NVIC}; @@ -43,6 +43,8 @@ pub use rtic_monotonic::{self, embedded_time as time, Monotonic}; #[doc(hidden)] pub mod export; #[doc(hidden)] +mod linked_list; +#[doc(hidden)] mod tq; /// Sets the given `interrupt` as pending |
