2019-06-13 23:56:59 +02:00
|
|
|
#![no_main]
|
|
|
|
|
|
|
|
#[rtfm::app(device = lm3s6965)]
|
|
|
|
const APP: () = {
|
2019-06-20 06:19:59 +02:00
|
|
|
#[task(binds = SysTick)]
|
|
|
|
fn sys_tick(_: sys_tick::Context) {}
|
2019-06-13 23:56:59 +02:00
|
|
|
|
|
|
|
#[task(schedule = [foo])]
|
|
|
|
fn foo(_: foo::Context) {}
|
|
|
|
};
|