2018-11-03 17:02:41 +01:00
|
|
|
//! examples/smallest.rs
|
|
|
|
|
|
|
|
#![no_main]
|
|
|
|
#![no_std]
|
|
|
|
|
2019-06-13 23:56:59 +02:00
|
|
|
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 {
|
2021-09-22 13:22:45 +02:00
|
|
|
use cortex_m_semihosting::debug;
|
|
|
|
|
2021-07-07 22:50:59 +02:00
|
|
|
#[shared]
|
|
|
|
struct Shared {}
|
|
|
|
|
|
|
|
#[local]
|
|
|
|
struct Local {}
|
|
|
|
|
|
|
|
#[init]
|
|
|
|
fn init(_: init::Context) -> (Shared, Local, init::Monotonics) {
|
2021-09-22 13:22:45 +02:00
|
|
|
debug::exit(debug::EXIT_SUCCESS); // Exit QEMU simulator
|
2021-07-21 10:14:00 +02:00
|
|
|
(Shared {}, Local {}, init::Monotonics())
|
2021-07-07 22:50:59 +02:00
|
|
|
}
|
|
|
|
}
|