blob: 71fef9aba0d667da720ef6ccf1c8af3a1ae6afbe (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#![no_main]
#[rtic_macros::mock_app(parse_binds, device = mock)]
mod app {
#[task(binds = SysTick)]
fn foo(_: foo::Context) {}
#[task]
fn foo(_: foo::Context) {}
}
|