2017-07-18 22:14:39 +02:00
|
|
|
#![feature(proc_macro)]
|
2017-07-24 03:51:58 +02:00
|
|
|
#![no_std]
|
2017-07-18 22:14:39 +02:00
|
|
|
|
|
|
|
extern crate cortex_m_rtfm as rtfm;
|
2018-05-07 17:46:26 +02:00
|
|
|
extern crate panic_itm;
|
2017-07-18 22:14:39 +02:00
|
|
|
extern crate stm32f103xx;
|
|
|
|
|
2017-07-27 18:40:15 +02:00
|
|
|
use rtfm::app;
|
2017-07-18 22:14:39 +02:00
|
|
|
|
|
|
|
app! { //~ error attempt to subtract with overflow
|
|
|
|
device: stm32f103xx,
|
|
|
|
|
|
|
|
tasks: {
|
2018-05-01 14:01:51 +02:00
|
|
|
exti0: {
|
|
|
|
interrupt: EXTI0,
|
2017-07-18 22:14:39 +02:00
|
|
|
// ERROR priority must be in the range [1, 16]
|
|
|
|
priority: 17,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2018-05-01 14:01:51 +02:00
|
|
|
fn init(_ctxt: init::Context) -> init::LateResources {
|
|
|
|
init::LateResources {}
|
|
|
|
}
|
2017-07-18 22:14:39 +02:00
|
|
|
|
2018-05-01 14:01:51 +02:00
|
|
|
fn idle(_ctxt: idle::Context) -> ! {
|
2017-07-18 22:14:39 +02:00
|
|
|
loop {}
|
|
|
|
}
|
|
|
|
|
2018-05-01 14:01:51 +02:00
|
|
|
fn exti0(_ctxt: exti0::Context) {}
|