2018-11-03 17:02:41 +01:00
|
|
|
//! `examples/not-sync.rs`
|
|
|
|
|
2021-07-07 22:50:59 +02:00
|
|
|
// #![deny(unsafe_code)]
|
2018-11-03 17:02:41 +01:00
|
|
|
#![deny(warnings)]
|
|
|
|
#![no_main]
|
|
|
|
#![no_std]
|
2023-01-07 17:59:39 +01:00
|
|
|
#![feature(type_alias_impl_trait)]
|
2018-11-03 17:02:41 +01:00
|
|
|
|
|
|
|
use core::marker::PhantomData;
|
2021-03-03 08:53:03 +01:00
|
|
|
use panic_semihosting as _;
|
2018-11-03 17:02:41 +01:00
|
|
|
|
|
|
|
pub struct NotSync {
|
|
|
|
_0: PhantomData<*const ()>,
|
2023-01-07 17:59:39 +01:00
|
|
|
data: u32,
|
2018-11-03 17:02:41 +01:00
|
|
|
}
|
|
|
|
|
2021-07-07 22:50:59 +02:00
|
|
|
unsafe impl Send for NotSync {}
|
|
|
|
|
2020-10-23 10:35:56 +02:00
|
|
|
#[rtic::app(device = lm3s6965, dispatchers = [SSI0])]
|
2020-05-19 20:00:13 +02:00
|
|
|
mod app {
|
2020-05-26 12:48:24 +02:00
|
|
|
use super::NotSync;
|
|
|
|
use core::marker::PhantomData;
|
2023-01-07 17:59:39 +01:00
|
|
|
use cortex_m_semihosting::{debug, hprintln};
|
2020-05-26 12:48:24 +02:00
|
|
|
|
2021-07-07 22:50:59 +02:00
|
|
|
#[shared]
|
|
|
|
struct Shared {
|
2019-07-10 22:42:44 +02:00
|
|
|
shared: NotSync,
|
|
|
|
}
|
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]
|
2023-01-07 17:59:39 +01:00
|
|
|
fn init(_: init::Context) -> (Shared, Local) {
|
2023-01-08 19:40:31 +01:00
|
|
|
hprintln!("init");
|
2020-10-01 19:38:49 +02:00
|
|
|
|
2023-01-07 17:59:39 +01:00
|
|
|
foo::spawn().unwrap();
|
|
|
|
bar::spawn().unwrap();
|
2021-07-07 22:50:59 +02:00
|
|
|
(
|
|
|
|
Shared {
|
2023-01-07 17:59:39 +01:00
|
|
|
shared: NotSync {
|
|
|
|
_0: PhantomData,
|
|
|
|
data: 13,
|
|
|
|
},
|
2021-07-07 22:50:59 +02:00
|
|
|
},
|
|
|
|
Local {},
|
|
|
|
)
|
2018-11-03 17:02:41 +01:00
|
|
|
}
|
|
|
|
|
2023-01-07 17:59:39 +01:00
|
|
|
#[idle]
|
|
|
|
fn idle(_: idle::Context) -> ! {
|
|
|
|
debug::exit(debug::EXIT_SUCCESS); // Exit QEMU simulator
|
|
|
|
loop {}
|
|
|
|
}
|
|
|
|
|
2021-07-07 22:50:59 +02:00
|
|
|
#[task(shared = [&shared])]
|
2023-01-07 17:59:39 +01:00
|
|
|
async fn foo(c: foo::Context) {
|
|
|
|
let shared: &NotSync = c.shared.shared;
|
2023-01-08 19:40:31 +01:00
|
|
|
hprintln!("foo a {}", shared.data);
|
2018-11-03 17:02:41 +01:00
|
|
|
}
|
|
|
|
|
2021-07-07 22:50:59 +02:00
|
|
|
#[task(shared = [&shared])]
|
2023-01-07 17:59:39 +01:00
|
|
|
async fn bar(c: bar::Context) {
|
|
|
|
let shared: &NotSync = c.shared.shared;
|
2023-01-08 19:40:31 +01:00
|
|
|
hprintln!("foo a {}", shared.data);
|
2018-11-03 17:02:41 +01:00
|
|
|
}
|
2020-04-22 12:58:14 +02:00
|
|
|
}
|