rtic/examples/only-shared-access.rs

43 lines
933 B
Rust
Raw Normal View History

2021-09-22 13:22:45 +02:00
//! examples/only-shared-access.rs
2018-11-03 17:02:41 +01:00
#![deny(unsafe_code)]
#![deny(warnings)]
#![no_main]
#![no_std]
use panic_semihosting as _;
2018-11-03 17:02:41 +01:00
2021-09-22 13:22:45 +02:00
#[rtic::app(device = lm3s6965, dispatchers = [UART0, UART1])]
2020-05-19 20:00:13 +02:00
mod app {
2020-10-15 18:50:17 +02:00
use cortex_m_semihosting::{debug, hprintln};
2021-07-07 22:50:59 +02:00
#[shared]
struct Shared {
2019-07-10 22:42:44 +02:00
key: u32,
}
2018-11-03 17:02:41 +01:00
2021-07-07 22:50:59 +02:00
#[local]
struct Local {}
2018-11-03 17:02:41 +01:00
#[init]
2021-07-07 22:50:59 +02:00
fn init(_: init::Context) -> (Shared, Local, init::Monotonics) {
2021-09-22 13:22:45 +02:00
foo::spawn().unwrap();
bar::spawn().unwrap();
2018-11-03 17:02:41 +01:00
2021-07-07 22:50:59 +02:00
(Shared { key: 0xdeadbeef }, Local {}, init::Monotonics())
2018-11-03 17:02:41 +01:00
}
2021-09-22 13:22:45 +02:00
#[task(shared = [&key])]
fn foo(cx: foo::Context) {
2021-07-07 22:50:59 +02:00
let key: &u32 = cx.shared.key;
2021-09-22 13:22:45 +02:00
hprintln!("foo(key = {:#x})", key).unwrap();
2018-11-03 17:02:41 +01:00
2021-09-22 13:22:45 +02:00
debug::exit(debug::EXIT_SUCCESS); // Exit QEMU simulator
2018-11-03 17:02:41 +01:00
}
2021-09-22 13:22:45 +02:00
#[task(priority = 2, shared = [&key])]
fn bar(cx: bar::Context) {
hprintln!("bar(key = {:#x})", cx.shared.key).unwrap();
2018-11-03 17:02:41 +01:00
}
2020-04-22 12:58:14 +02:00
}