mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-24 12:42:52 +01:00
8 lines
178 B
Rust
8 lines
178 B
Rust
|
#![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) {}
|
||
|
}
|