diff options
Diffstat (limited to 'examples/t-schedule.rs')
-rw-r--r-- | examples/t-schedule.rs | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/examples/t-schedule.rs b/examples/t-schedule.rs index 4ce62b47..d7051609 100644 --- a/examples/t-schedule.rs +++ b/examples/t-schedule.rs @@ -7,15 +7,11 @@ use panic_semihosting as _; -pub struct SomeStruct; - #[rtic::app(device = lm3s6965, dispatchers = [SSI0])] mod app { use dwt_systick_monotonic::DwtSystick; use rtic::time::duration::Seconds; - use super::SomeStruct; - #[monotonic(binds = SysTick, default = true)] type MyMono = DwtSystick<8_000_000>; // 8 MHz |