2018-11-03 17:02:41 +01:00
|
|
|
//! `examples/not-sync.rs`
|
|
|
|
|
|
|
|
#![deny(unsafe_code)]
|
|
|
|
#![deny(warnings)]
|
|
|
|
#![no_main]
|
|
|
|
#![no_std]
|
|
|
|
|
|
|
|
use core::marker::PhantomData;
|
|
|
|
|
|
|
|
use cortex_m_semihosting::debug;
|
2019-06-13 23:56:59 +02:00
|
|
|
use panic_halt as _;
|
2018-11-03 17:02:41 +01:00
|
|
|
|
|
|
|
pub struct NotSync {
|
|
|
|
_0: PhantomData<*const ()>,
|
|
|
|
}
|
|
|
|
|
2019-04-21 20:10:40 +02:00
|
|
|
#[rtfm::app(device = lm3s6965)]
|
2018-11-03 17:02:41 +01:00
|
|
|
const APP: () = {
|
2019-07-10 22:42:44 +02:00
|
|
|
struct Resources {
|
|
|
|
#[init(NotSync { _0: PhantomData })]
|
|
|
|
shared: NotSync,
|
|
|
|
}
|
2018-11-03 17:02:41 +01:00
|
|
|
|
|
|
|
#[init]
|
2019-04-21 20:10:40 +02:00
|
|
|
fn init(_: init::Context) {
|
2018-11-03 17:02:41 +01:00
|
|
|
debug::exit(debug::EXIT_SUCCESS);
|
|
|
|
}
|
|
|
|
|
2019-08-21 10:17:27 +02:00
|
|
|
#[task(resources = [&shared])]
|
2019-04-21 20:10:40 +02:00
|
|
|
fn foo(c: foo::Context) {
|
2019-07-10 22:42:44 +02:00
|
|
|
let _: &NotSync = c.resources.shared;
|
2018-11-03 17:02:41 +01:00
|
|
|
}
|
|
|
|
|
2019-08-21 10:17:27 +02:00
|
|
|
#[task(resources = [&shared])]
|
2019-04-21 20:10:40 +02:00
|
|
|
fn bar(c: bar::Context) {
|
2019-07-10 22:42:44 +02:00
|
|
|
let _: &NotSync = c.resources.shared;
|
2018-11-03 17:02:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
fn UART0();
|
|
|
|
}
|
|
|
|
};
|