diff options
| author | Emil Fresk <emil.fresk@gmail.com> | 2021-04-22 17:39:07 +0200 |
|---|---|---|
| committer | Emil Fresk <emil.fresk@gmail.com> | 2021-04-22 17:39:07 +0200 |
| commit | 6fc7b964748dab3161292fe7470aeadc8bf6e646 (patch) | |
| tree | 592e52a25d2b950057d7b2fc55a96a1cb71ceea4 /examples | |
| parent | e6a22aa48e088ef7c975d20d51e938b6b3205569 (diff) | |
use super::xx now works with monotonics
Diffstat (limited to 'examples')
| -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 d705160..4ce62b4 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 |
