1
0
Fork 0
mirror of https://github.com/rtic-rs/rtic.git synced 2025-02-15 12:58:38 +01:00
rtic/ui/single/extern-interrupt-used.rs
2020-10-29 19:29:46 +01:00

7 lines
134 B
Rust

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