mirror of
https://github.com/rtic-rs/rtic.git
synced 2025-12-20 23:05:21 +01:00
parent
653338e799
commit
c631049efc
154 changed files with 7538 additions and 3276 deletions
33
tests/cpass/late-not-send.rs
Normal file
33
tests/cpass/late-not-send.rs
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
#![feature(extern_crate_item_prelude)] // ???
|
||||
#![no_main]
|
||||
#![no_std]
|
||||
|
||||
extern crate lm3s6965;
|
||||
extern crate panic_halt;
|
||||
extern crate rtfm;
|
||||
|
||||
use core::marker::PhantomData;
|
||||
|
||||
use rtfm::app;
|
||||
|
||||
pub struct NotSend {
|
||||
_0: PhantomData<*const ()>,
|
||||
}
|
||||
|
||||
#[app(device = lm3s6965)]
|
||||
const APP: () = {
|
||||
static mut X: NotSend = ();
|
||||
static mut Y: Option<NotSend> = None;
|
||||
|
||||
#[init(resources = [Y])]
|
||||
fn init() {
|
||||
*resources.Y = Some(NotSend { _0: PhantomData });
|
||||
|
||||
X = NotSend { _0: PhantomData };
|
||||
}
|
||||
|
||||
#[idle(resources = [X, Y])]
|
||||
fn idle() -> ! {
|
||||
loop {}
|
||||
}
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue