mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 20:22:51 +01:00
34 lines
716 B
Rust
34 lines
716 B
Rust
//! examples/task-local_minimal.rs
|
|
#![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 {
|
|
// A local (move), late resource
|
|
#[task_local]
|
|
l: u32,
|
|
}
|
|
|
|
#[init]
|
|
fn init(_: init::Context) -> init::LateResources {
|
|
init::LateResources { l: 42 }
|
|
}
|
|
|
|
// l is task_local
|
|
#[idle(resources =[l])]
|
|
fn idle(cx: idle::Context) -> ! {
|
|
hprintln!("IDLE:l = {}", cx.resources.l).unwrap();
|
|
debug::exit(debug::EXIT_SUCCESS);
|
|
loop {
|
|
cortex_m::asm::nop();
|
|
}
|
|
}
|
|
}
|