blob: 57c59c1b0148eef5f59d074c10265ae332e28c8b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#![no_main]
#[rtic_macros::mock_app(parse_extern_interrupt, parse_binds, device = mock)]
mod app {
#[monotonic(binds = Tim1)]
type Fast1 = hal::Tim1Monotonic;
#[task(binds = Tim1)]
fn foo(_: foo::Context) {}
}
|