diff options
author | 2021-04-22 17:39:07 +0200 | |
---|---|---|
committer | 2021-04-22 17:39:07 +0200 | |
commit | 6fc7b964748dab3161292fe7470aeadc8bf6e646 (patch) | |
tree | 592e52a25d2b950057d7b2fc55a96a1cb71ceea4 /examples/t-schedule.rs | |
parent | e6a22aa48e088ef7c975d20d51e938b6b3205569 (diff) | |
download | rtic-6fc7b964748dab3161292fe7470aeadc8bf6e646.tar.gz rtic-6fc7b964748dab3161292fe7470aeadc8bf6e646.tar.zst rtic-6fc7b964748dab3161292fe7470aeadc8bf6e646.zip |
use super::xx now works with monotonics
Diffstat (limited to 'examples/t-schedule.rs')
-rw-r--r-- | examples/t-schedule.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/examples/t-schedule.rs b/examples/t-schedule.rs index d7051609..4ce62b47 100644 --- a/examples/t-schedule.rs +++ b/examples/t-schedule.rs @@ -7,11 +7,15 @@ 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 |