mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 20:22:51 +01:00
29 lines
553 B
Rust
29 lines
553 B
Rust
//! examples/minimal_late_resource.rs
|
|
|
|
#![deny(unsafe_code)]
|
|
#![deny(warnings)]
|
|
#![no_main]
|
|
#![no_std]
|
|
|
|
use panic_semihosting as _;
|
|
|
|
#[rtic::app(device = lm3s6965)]
|
|
mod app {
|
|
|
|
#[resources]
|
|
struct Resources {
|
|
resource_x: u32,
|
|
}
|
|
|
|
#[init]
|
|
fn init(_: init::Context) -> (init::LateResources, init::Monotonics) {
|
|
(init::LateResources { resource_x: 0 }, init::Monotonics {})
|
|
}
|
|
|
|
#[idle(resources = [resource_x])]
|
|
fn idle(_: idle::Context) -> ! {
|
|
loop {
|
|
cortex_m::asm::nop();
|
|
}
|
|
}
|
|
}
|