rtic/rtic-macros/ui/interrupt-double.rs

11 lines
182 B
Rust
Raw Normal View History

#![no_main]
2023-01-03 07:51:35 +01:00
#[rtic_macros::mock_app(device = mock)]
mod app {
#[task(binds = UART0)]
fn foo(_: foo::Context) {}
#[task(binds = UART0)]
fn bar(_: bar::Context) {}
}