mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 20:22:51 +01:00
46 lines
880 B
Rust
46 lines
880 B
Rust
//! examples/binds.rs
|
|
|
|
#![deny(unsafe_code)]
|
|
#![deny(warnings)]
|
|
#![no_main]
|
|
#![no_std]
|
|
|
|
use cortex_m_semihosting::{debug, hprintln};
|
|
use lm3s6965::Interrupt;
|
|
use panic_semihosting as _;
|
|
|
|
// `examples/interrupt.rs` rewritten to use `binds`
|
|
#[rtfm::app(device = lm3s6965)]
|
|
const APP: () = {
|
|
#[init]
|
|
fn init(_: init::Context) {
|
|
rtfm::pend(Interrupt::UART0);
|
|
|
|
hprintln!("init").unwrap();
|
|
}
|
|
|
|
#[idle]
|
|
fn idle(_: idle::Context) -> ! {
|
|
hprintln!("idle").unwrap();
|
|
|
|
rtfm::pend(Interrupt::UART0);
|
|
|
|
debug::exit(debug::EXIT_SUCCESS);
|
|
|
|
loop {}
|
|
}
|
|
|
|
#[task(binds = UART0)]
|
|
fn foo(_: foo::Context) {
|
|
static mut TIMES: u32 = 0;
|
|
|
|
*TIMES += 1;
|
|
|
|
hprintln!(
|
|
"foo called {} time{}",
|
|
*TIMES,
|
|
if *TIMES > 1 { "s" } else { "" }
|
|
)
|
|
.unwrap();
|
|
}
|
|
};
|