2017-12-09 17:14:51 +01:00
|
|
|
#![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]
|
2017-12-09 17:14:51 +01:00
|
|
|
#![no_std]
|
|
|
|
|
|
|
|
extern crate cortex_m_rtfm as rtfm;
|
2018-05-07 17:46:26 +02:00
|
|
|
extern crate panic_itm;
|
2017-12-09 17:14:51 +01:00
|
|
|
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],
|
2018-04-08 18:23:27 +02:00
|
|
|
//~^ error: this resource is owned by `init` and can't be shared
|
2017-12-09 17:14:51 +01:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2018-05-01 14:01:51 +02:00
|
|
|
fn init(_ctxt: init::Context) -> init::LateResources {
|
|
|
|
init::LateResources {}
|
|
|
|
}
|
2017-12-09 17:14:51 +01:00
|
|
|
|
2018-05-01 14:01:51 +02:00
|
|
|
fn idle(_ctxt: idle::Context) -> ! {
|
2017-12-09 17:14:51 +01:00
|
|
|
loop {}
|
|
|
|
}
|