diff options
Diffstat (limited to 'macros/ui/task-interrupt-same-prio-spawn.rs')
-rw-r--r-- | macros/ui/task-interrupt-same-prio-spawn.rs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/macros/ui/task-interrupt-same-prio-spawn.rs b/macros/ui/task-interrupt-same-prio-spawn.rs new file mode 100644 index 00000000..741e60e4 --- /dev/null +++ b/macros/ui/task-interrupt-same-prio-spawn.rs @@ -0,0 +1,7 @@ +#![no_main] + +#[rtic_macros::mock_app(parse_binds, device = mock)] +mod app { + #[task(binds = SysTick, only_same_priority_spawn_please_fix_me)] + fn foo(_: foo::Context) {} +} |