2017-12-09 15:12:42 +01:00
|
|
|
#![deny(unsafe_code)]
|
2017-07-20 23:16:40 +02:00
|
|
|
#![deny(warnings)]
|
|
|
|
#![feature(proc_macro)]
|
2017-07-24 03:51:58 +02:00
|
|
|
#![no_std]
|
2017-07-20 23:16:40 +02:00
|
|
|
|
|
|
|
extern crate cortex_m_rtfm as rtfm;
|
2018-05-01 14:01:51 +02:00
|
|
|
extern crate panic_abort;
|
2017-07-20 23:16:40 +02:00
|
|
|
extern crate stm32f103xx;
|
|
|
|
|
|
|
|
use rtfm::app;
|
|
|
|
|
2017-07-28 00:08:42 +02:00
|
|
|
app! { //~ error proc macro panicked
|
2018-05-01 14:01:51 +02:00
|
|
|
device: stm32f103xx, //~ no variant named `SYS_TICK` found for type `stm32f103xx::Interrupt`
|
2017-07-20 23:16:40 +02:00
|
|
|
|
|
|
|
tasks: {
|
2018-05-01 14:01:51 +02:00
|
|
|
sys_tick: {
|
|
|
|
interrupt: SYS_TICK, // ERROR can't bind to exception
|
2017-07-20 23:16:40 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2018-05-01 14:01:51 +02:00
|
|
|
fn init(_ctxt: init::Context) -> init::LateResources {
|
|
|
|
init::LateResources {}
|
|
|
|
}
|
2017-07-20 23:16:40 +02:00
|
|
|
|
2018-05-01 14:01:51 +02:00
|
|
|
fn idle(_ctxt: idle::Context) -> ! {
|
2017-07-20 23:16:40 +02:00
|
|
|
loop {}
|
|
|
|
}
|
2018-05-01 14:01:51 +02:00
|
|
|
|
|
|
|
fn sys_tick(_ctxt: sys_tick::Context) {}
|