rtic/examples/t-idle-main.rs

22 lines
373 B
Rust
Raw Normal View History

#![deny(unsafe_code)]
#![deny(warnings)]
#![no_main]
#![no_std]
use cortex_m_semihosting::debug;
use panic_semihosting as _;
2020-06-11 19:18:29 +02:00
#[rtic::app(device = lm3s6965)]
2020-05-19 20:00:13 +02:00
mod app {
#[init]
2020-06-11 19:00:52 +02:00
fn init(_: init::Context) {}
#[idle]
fn main(_: main::Context) -> ! {
debug::exit(debug::EXIT_SUCCESS);
loop {
cortex_m::asm::nop();
}
}
2020-04-22 12:58:14 +02:00
}