rtic/ui/single/exception-systick-used.rs
Jorge Aparicio 4e51bb68b9 RFC #207
2019-06-20 06:19:59 +02:00

10 lines
198 B
Rust

#![no_main]
#[rtfm::app(device = lm3s6965)]
const APP: () = {
#[task(binds = SysTick)]
fn sys_tick(_: sys_tick::Context) {}
#[task(schedule = [foo])]
fn foo(_: foo::Context) {}
};