rtic/examples/smallest.rs

22 lines
356 B
Rust
Raw Normal View History

2018-11-03 17:02:41 +01:00
//! examples/smallest.rs
#![no_main]
#![no_std]
use panic_semihosting as _; // panic handler
2020-06-11 19:18:29 +02:00
use rtic::app;
2018-11-03 17:02:41 +01:00
#[app(device = lm3s6965)]
2021-07-07 22:50:59 +02:00
mod app {
#[shared]
struct Shared {}
#[local]
struct Local {}
#[init]
fn init(_: init::Context) -> (Shared, Local, init::Monotonics) {
(Shared {}, Local {}, init::Monotonics())
2021-07-07 22:50:59 +02:00
}
}