rtic/ui/single/exception-systick-used.rs
2020-09-25 14:29:34 +00:00

10 lines
189 B
Rust

#![no_main]
#[rtic::app(device = lm3s6965)]
mod app {
#[task(binds = SysTick)]
fn sys_tick(_: sys_tick::Context) {}
#[task(schedule = [foo])]
fn foo(_: foo::Context) {}
}