rtic/ui/single/extern-interrupt-used.rs
Jorge Aparicio 4e51bb68b9 RFC #207
2019-06-20 06:19:59 +02:00

11 lines
164 B
Rust

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