rtic/ui/extern-interrupt-used.rs
2021-03-03 08:55:19 +01:00

7 lines
134 B
Rust

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