rtic/examples/shared-with-init.rs

41 lines
876 B
Rust
Raw Normal View History

//! `examples/shared-with-init.rs`
#![deny(unsafe_code)]
#![deny(warnings)]
#![no_main]
#![no_std]
use cortex_m_semihosting::debug;
use lm3s6965::Interrupt;
use panic_halt as _;
2020-06-11 19:18:29 +02:00
use rtic::app;
pub struct MustBeSend;
#[app(device = lm3s6965)]
const APP: () = {
2019-07-10 22:42:44 +02:00
struct Resources {
#[init(None)]
shared: Option<MustBeSend>,
}
2019-07-10 22:42:44 +02:00
#[init(resources = [shared])]
2019-04-21 20:10:40 +02:00
fn init(c: init::Context) {
// this `message` will be sent to task `UART0`
let message = MustBeSend;
2019-07-10 22:42:44 +02:00
*c.resources.shared = Some(message);
2020-06-11 19:18:29 +02:00
rtic::pend(Interrupt::UART0);
}
2019-07-10 22:42:44 +02:00
#[task(binds = UART0, resources = [shared])]
2019-06-20 06:19:59 +02:00
fn uart0(c: uart0::Context) {
2019-07-10 22:42:44 +02:00
if let Some(message) = c.resources.shared.take() {
// `message` has been received
drop(message);
debug::exit(debug::EXIT_SUCCESS);
}
}
};