2021-07-07 22:50:59 +02:00
|
|
|
//! [compile-pass] shared resources don't need to be `Send` if they are owned by `idle`
|
2019-06-13 23:56:59 +02:00
|
|
|
|
2018-11-03 17:02:41 +01:00
|
|
|
#![no_main]
|
|
|
|
#![no_std]
|
|
|
|
|
|
|
|
use core::marker::PhantomData;
|
|
|
|
|
2021-03-03 08:53:03 +01:00
|
|
|
use panic_semihosting as _;
|
2019-06-13 23:56:59 +02:00
|
|
|
|
2018-11-03 17:02:41 +01:00
|
|
|
pub struct NotSend {
|
|
|
|
_0: PhantomData<*const ()>,
|
|
|
|
}
|
|
|
|
|
2020-06-11 19:18:29 +02:00
|
|
|
#[rtic::app(device = lm3s6965)]
|
2020-05-19 20:00:13 +02:00
|
|
|
mod app {
|
2020-05-26 12:48:24 +02:00
|
|
|
use super::NotSend;
|
2020-10-15 18:50:17 +02:00
|
|
|
use core::marker::PhantomData;
|
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
|
|
|
x: NotSend,
|
|
|
|
y: Option<NotSend>,
|
2019-06-13 23:56:59 +02:00
|
|
|
}
|
|
|
|
|
2021-07-07 22:50:59 +02:00
|
|
|
#[local]
|
|
|
|
struct Local {}
|
|
|
|
|
2020-10-22 21:36:32 +02:00
|
|
|
#[init]
|
2021-07-07 22:50:59 +02:00
|
|
|
fn init(_: init::Context) -> (Shared, Local, init::Monotonics) {
|
2021-02-20 19:22:45 +01:00
|
|
|
(
|
2021-07-07 22:50:59 +02:00
|
|
|
Shared {
|
2021-02-20 19:22:45 +01:00
|
|
|
x: NotSend { _0: PhantomData },
|
2021-07-07 22:50:59 +02:00
|
|
|
y: None,
|
2021-02-20 19:22:45 +01:00
|
|
|
},
|
2021-07-07 22:50:59 +02:00
|
|
|
Local {},
|
2021-02-20 19:22:45 +01:00
|
|
|
init::Monotonics(),
|
|
|
|
)
|
2018-11-03 17:02:41 +01:00
|
|
|
}
|
|
|
|
|
2021-07-07 22:50:59 +02:00
|
|
|
#[idle(shared = [x, y])]
|
2019-04-21 20:13:15 +02:00
|
|
|
fn idle(_: idle::Context) -> ! {
|
2020-09-14 09:35:10 +02:00
|
|
|
loop {
|
|
|
|
cortex_m::asm::nop();
|
|
|
|
}
|
2018-11-03 17:02:41 +01:00
|
|
|
}
|
2020-04-22 12:58:14 +02:00
|
|
|
}
|