rtic/ui/single/extern-interrupt-used.rs
Per Lindgren 6f67d3a933 ci fix
2020-10-24 20:21:52 +02:00

7 lines
134 B
Rust

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