rtic/rtic-macros/ui/interrupt-double.rs
2023-03-01 00:35:13 +01:00

10 lines
182 B
Rust

#![no_main]
#[rtic_macros::mock_app(device = mock)]
mod app {
#[task(binds = UART0)]
fn foo(_: foo::Context) {}
#[task(binds = UART0)]
fn bar(_: bar::Context) {}
}