mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 20:22:51 +01:00
39 lines
718 B
Rust
39 lines
718 B
Rust
//! `examples/not-sync.rs`
|
|
|
|
#![deny(unsafe_code)]
|
|
#![deny(warnings)]
|
|
#![no_main]
|
|
#![no_std]
|
|
|
|
use core::marker::PhantomData;
|
|
|
|
use cortex_m_semihosting::debug;
|
|
use panic_halt as _;
|
|
|
|
pub struct NotSync {
|
|
_0: PhantomData<*const ()>,
|
|
}
|
|
|
|
#[rtfm::app(device = lm3s6965)]
|
|
const APP: () = {
|
|
static SHARED: NotSync = NotSync { _0: PhantomData };
|
|
|
|
#[init]
|
|
fn init(_: init::Context) {
|
|
debug::exit(debug::EXIT_SUCCESS);
|
|
}
|
|
|
|
#[task(resources = [SHARED])]
|
|
fn foo(c: foo::Context) {
|
|
let _: &NotSync = c.resources.SHARED;
|
|
}
|
|
|
|
#[task(resources = [SHARED])]
|
|
fn bar(c: bar::Context) {
|
|
let _: &NotSync = c.resources.SHARED;
|
|
}
|
|
|
|
extern "C" {
|
|
fn UART0();
|
|
}
|
|
};
|