blob: 1c30b7004bdafcdf3f6df20f2795e6c2bb8211a6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#![no_main]
#[rtic::app(device = lm3s6965)]
mod app {
#[task(binds = SysTick)]
fn sys_tick(_: sys_tick::Context) {}
#[task(schedule = [foo])]
fn foo(_: foo::Context) {}
}
|