rtic/ui/extern-interrupt-not-enough.rs
2023-01-26 22:25:11 +01:00

18 lines
273 B
Rust

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