rtic/ui/extern-interrupt-used.rs
2021-07-21 10:14:00 +02:00

18 lines
343 B
Rust

#![no_main]
#[rtic::app(device = lm3s6965, dispatchers = [UART0])]
mod app {
#[shared]
struct Shared {}
#[local]
struct Local {}
#[init]
fn init(cx: init::Context) -> (Shared, Local, init::Monotonics) {
(Shared {}, Local {}, init::Monotonics())
}
#[task(binds = UART0)]
fn a(_: a::Context) {}
}