2019-06-13 23:56:59 +02:00
|
|
|
#![no_main]
|
|
|
|
|
2020-06-11 19:18:29 +02:00
|
|
|
#[rtic::app(device = lm3s6965)]
|
2019-06-13 23:56:59 +02:00
|
|
|
const APP: () = {
|
2019-06-20 06:19:59 +02:00
|
|
|
#[task(binds = NonMaskableInt)]
|
|
|
|
fn nmi(_: nmi::Context) {}
|
2019-06-13 23:56:59 +02:00
|
|
|
};
|