rtic/ui/single/extern-interrupt-used.rs
2020-06-11 17:18:29 +00:00

11 lines
164 B
Rust

#![no_main]
#[rtic::app(device = lm3s6965)]
const APP: () = {
#[task(binds = UART0)]
fn a(_: a::Context) {}
extern "C" {
fn UART0();
}
};