rtic/ui/single/extern-interrupt-used.rs
2020-10-29 19:29:46 +01:00

7 lines
134 B
Rust

#![no_main]
#[rtic::app(device = lm3s6965, dispatchers = [UART0])]
mod app {
#[task(binds = UART0)]
fn a(_: a::Context) {}
}