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