rtic/examples/late.rs

55 lines
1.3 KiB
Rust
Raw Normal View History

2018-11-03 17:02:41 +01:00
//! examples/late.rs
#![deny(unsafe_code)]
#![deny(warnings)]
#![no_main]
#![no_std]
use cortex_m_semihosting::{debug, hprintln};
2018-11-03 17:02:41 +01:00
use heapless::{
consts::*,
spsc::{Consumer, Producer, Queue},
};
use lm3s6965::Interrupt;
use panic_semihosting as _;
2018-11-03 17:02:41 +01:00
2019-04-21 20:10:40 +02:00
#[rtfm::app(device = lm3s6965)]
2018-11-03 17:02:41 +01:00
const APP: () = {
// Late resources
extern "C" {
static mut P: Producer<'static, u32, U4>;
static mut C: Consumer<'static, u32, U4>;
}
2018-11-03 17:02:41 +01:00
#[init]
2019-04-21 20:10:40 +02:00
fn init(_: init::Context) -> init::LateResources {
2018-11-03 17:02:41 +01:00
// NOTE: we use `Option` here to work around the lack of
// a stable `const` constructor
static mut Q: Option<Queue<u32, U4>> = None;
*Q = Some(Queue::new());
let (p, c) = Q.as_mut().unwrap().split();
// Initialization of late resources
2019-02-12 15:08:46 +01:00
init::LateResources { P: p, C: c }
2018-11-03 17:02:41 +01:00
}
#[idle(resources = [C])]
2019-04-21 20:10:40 +02:00
fn idle(c: idle::Context) -> ! {
2018-11-03 17:02:41 +01:00
loop {
2019-04-21 20:10:40 +02:00
if let Some(byte) = c.resources.C.dequeue() {
hprintln!("received message: {}", byte).unwrap();
2018-11-03 17:02:41 +01:00
debug::exit(debug::EXIT_SUCCESS);
} else {
rtfm::pend(Interrupt::UART0);
}
}
}
2019-06-20 06:19:59 +02:00
#[task(binds = UART0, resources = [P])]
fn uart0(c: uart0::Context) {
2019-04-21 20:10:40 +02:00
c.resources.P.enqueue(42).unwrap();
2018-11-03 17:02:41 +01:00
}
};