rtic/examples/late.rs

57 lines
1.4 KiB
Rust
Raw Normal View History

2021-03-12 17:41:32 +01:00
//! examples/late.rs
#![deny(unsafe_code)]
2021-03-13 14:35:07 +01:00
// #![deny(warnings)]
2021-03-12 17:41:32 +01:00
#![no_main]
#![no_std]
use panic_semihosting as _;
#[rtic::app(device = lm3s6965)]
mod app {
use cortex_m_semihosting::{debug, hprintln};
use heapless::{
consts::*,
i,
spsc::{Consumer, Producer, Queue},
};
use lm3s6965::Interrupt;
// Late resources
#[resources]
struct Resources {
2021-03-13 14:35:07 +01:00
// p: Producer<'static, u32, U4>,
2021-03-12 17:41:32 +01:00
c: Consumer<'static, u32, U4>,
#[task_local]
#[init(Queue(i::Queue::new()))]
q: Queue<u32, U4>,
}
#[init(resources = [q])]
fn init(cx: init::Context) -> (init::LateResources, init::Monotonics) {
let (p, c) = cx.resources.q.split();
// Initialization of late resources
2021-03-13 14:35:07 +01:00
// (init::LateResources { p, c }, init::Monotonics())
(init::LateResources { c }, init::Monotonics())
2021-03-12 17:41:32 +01:00
}
#[idle(resources = [c])]
fn idle(mut c: idle::Context) -> ! {
loop {
if let Some(byte) = c.resources.c.lock(|c| c.dequeue()) {
hprintln!("received message: {}", byte).unwrap();
debug::exit(debug::EXIT_SUCCESS);
} else {
rtic::pend(Interrupt::UART0);
}
}
}
2021-03-13 14:35:07 +01:00
// #[task(binds = UART0, resources = [p])]
// fn uart0(mut c: uart0::Context) {
// c.resources.p.lock(|p| p.enqueue(42).unwrap());
// }
2021-03-12 17:41:32 +01:00
}