rtic/examples/t-late-not-send.rs

37 lines
753 B
Rust
Raw Normal View History

//! [compile-pass] late resources don't need to be `Send` if they are owned by `idle`
2018-11-03 17:02:41 +01:00
#![no_main]
#![no_std]
use core::marker::PhantomData;
use panic_halt as _;
2018-11-03 17:02:41 +01:00
pub struct NotSend {
_0: PhantomData<*const ()>,
}
2019-04-21 20:13:15 +02:00
#[rtfm::app(device = lm3s6965)]
2018-11-03 17:02:41 +01:00
const APP: () = {
extern "C" {
static mut X: NotSend;
}
2018-11-03 17:02:41 +01:00
static mut Y: Option<NotSend> = None;
#[init(resources = [Y])]
2019-04-21 20:13:15 +02:00
fn init(c: init::Context) -> init::LateResources {
// equivalent to late resource initialization
2019-04-21 20:13:15 +02:00
*c.resources.Y = Some(NotSend { _0: PhantomData });
2018-11-03 17:02:41 +01:00
2019-02-12 15:08:46 +01:00
init::LateResources {
X: NotSend { _0: PhantomData },
}
2018-11-03 17:02:41 +01:00
}
#[idle(resources = [X, Y])]
2019-04-21 20:13:15 +02:00
fn idle(_: idle::Context) -> ! {
2018-11-03 17:02:41 +01:00
loop {}
}
};