rtic/ui/single/extern-interrupt-used.rs

12 lines
155 B
Rust
Raw Normal View History

#![no_main]
2020-06-11 19:18:29 +02:00
#[rtic::app(device = lm3s6965)]
2020-05-19 20:00:13 +02:00
mod app {
2019-06-20 06:19:59 +02:00
#[task(binds = UART0)]
fn a(_: a::Context) {}
extern "C" {
fn UART0();
}
}