rtic/examples/preempt.rs

38 lines
878 B
Rust
Raw Permalink Normal View History

2019-08-21 10:17:27 +02:00
//! examples/preempt.rs
#![no_main]
#![no_std]
use cortex_m_semihosting::{debug, hprintln};
use lm3s6965::Interrupt;
use panic_semihosting as _;
use rtfm::app;
#[app(device = lm3s6965)]
const APP: () = {
#[init]
fn init(_: init::Context) {
2019-08-21 10:53:13 +02:00
rtfm::pend(Interrupt::GPIOA);
2019-08-21 10:17:27 +02:00
}
2019-08-21 10:53:13 +02:00
#[task(binds = GPIOA, priority = 1)]
fn gpioa(_: gpioa::Context) {
hprintln!("GPIOA - start").unwrap();
rtfm::pend(Interrupt::GPIOC);
hprintln!("GPIOA - end").unwrap();
2019-08-21 10:17:27 +02:00
debug::exit(debug::EXIT_SUCCESS);
}
2019-08-21 10:53:13 +02:00
#[task(binds = GPIOB, priority = 2)]
fn gpiob(_: gpiob::Context) {
hprintln!(" GPIOB").unwrap();
2019-08-21 10:17:27 +02:00
}
2019-08-21 10:53:13 +02:00
#[task(binds = GPIOC, priority = 2)]
fn gpioc(_: gpioc::Context) {
hprintln!(" GPIOC - start").unwrap();
rtfm::pend(Interrupt::GPIOB);
hprintln!(" GPIOC - end").unwrap();
2019-08-21 10:17:27 +02:00
}
};