2021-03-13 15:24:53 +01:00
|
|
|
//! examples/minimal-task-local-early.rs
|
|
|
|
|
2021-03-12 01:31:04 +01:00
|
|
|
#![deny(unsafe_code)]
|
|
|
|
#![deny(warnings)]
|
|
|
|
#![no_main]
|
|
|
|
#![no_std]
|
|
|
|
|
|
|
|
use panic_semihosting as _;
|
|
|
|
|
|
|
|
#[rtic::app(device = lm3s6965)]
|
|
|
|
mod app {
|
|
|
|
use cortex_m_semihosting::{debug, hprintln};
|
|
|
|
|
|
|
|
#[resources]
|
|
|
|
struct Resources {
|
2021-03-13 15:24:53 +01:00
|
|
|
// A local (move), early resource
|
2021-03-12 01:31:04 +01:00
|
|
|
#[task_local]
|
|
|
|
#[init(42)]
|
|
|
|
early: u32,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[init]
|
|
|
|
fn init(_: init::Context) -> (init::LateResources, init::Monotonics) {
|
|
|
|
(init::LateResources {}, init::Monotonics())
|
|
|
|
}
|
|
|
|
|
|
|
|
// task_local is task_local
|
|
|
|
#[idle(resources = [early])]
|
|
|
|
fn idle(cx: idle::Context) -> ! {
|
2021-03-13 15:24:53 +01:00
|
|
|
hprintln!("IDLE:early = {}", cx.resources.early).unwrap();
|
2021-03-12 01:31:04 +01:00
|
|
|
debug::exit(debug::EXIT_SUCCESS);
|
|
|
|
loop {
|
|
|
|
cortex_m::asm::nop();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|