rtic/examples/t-htask-main.rs

21 lines
385 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)]
const APP: () = {
#[init]
fn init(_: init::Context) {
2020-06-11 19:18:29 +02:00
rtic::pend(lm3s6965::Interrupt::UART0)
}
#[task(binds = UART0)]
fn main(_: main::Context) {
debug::exit(debug::EXIT_SUCCESS);
}
};