rtic/examples/t-idle-main.rs
Jorge Aparicio 0ad311074e allow handlers to be named 'main'
`#[init]`, `#[idle]` and `#[task]` handlers can now be named `main`

fixes #311
2020-05-29 14:50:28 +02:00

20 lines
344 B
Rust

#![deny(unsafe_code)]
#![deny(warnings)]
#![no_main]
#![no_std]
use cortex_m_semihosting::debug;
use panic_semihosting as _;
#[rtfm::app(device = lm3s6965)]
const APP: () = {
#[init]
fn init(_: init::Context) {
}
#[idle]
fn main(_: main::Context) -> ! {
debug::exit(debug::EXIT_SUCCESS);
loop {}
}
};