rtic/tests/cfail/init-resource-share-idle.rs

37 lines
632 B
Rust
Raw Normal View History

#![deny(warnings)]
#![feature(proc_macro)]
2018-05-29 12:23:09 +02:00
#![feature(proc_macro_gen)]
2018-05-14 21:22:50 +02:00
#![no_main]
#![no_std]
extern crate cortex_m_rtfm as rtfm;
2018-05-07 17:46:26 +02:00
extern crate panic_itm;
extern crate stm32f103xx;
use rtfm::app;
app! { //~ proc macro panicked
device: stm32f103xx,
resources: {
static BUFFER: [u8; 16] = [0; 16];
},
init: {
resources: [BUFFER],
},
idle: {
resources: [BUFFER],
//~^ error: this resource is owned by `init` and can't be shared
},
}
2018-05-01 14:01:51 +02:00
fn init(_ctxt: init::Context) -> init::LateResources {
init::LateResources {}
}
2018-05-01 14:01:51 +02:00
fn idle(_ctxt: idle::Context) -> ! {
loop {}
}