blob: d30da1bd7276b4eaac2e290f4ef0c91ac9b1fa7c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#![no_main]
#[rtfm::app(device = lm3s6965)]
const APP: () = {
#[exception]
fn SysTick(_: SysTick::Context) {}
#[task(schedule = [foo])]
fn foo(_: foo::Context) {}
};
|