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)]
|
2023-01-21 23:10:43 +01:00
|
|
|
#![deny(missing_docs)]
|
2018-11-03 17:02:41 +01:00
|
|
|
#![no_main]
|
|
|
|
#![no_std]
|
|
|
|
|
2019-06-13 23:56:59 +02:00
|
|
|
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,
|
2019-06-13 23:56:59 +02:00
|
|
|
}
|
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;
|
2023-01-11 21:33:44 +01:00
|
|
|
hprintln!("foo(key = {:#x})", key);
|
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) {
|
2023-01-11 21:33:44 +01:00
|
|
|
hprintln!("bar(key = {:#x})", cx.shared.key);
|
2018-11-03 17:02:41 +01:00
|
|
|
}
|
2020-04-22 12:58:14 +02:00
|
|
|
}
|