rtic/tests/cfail/exception.rs

27 lines
430 B
Rust
Raw Normal View History

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;
extern crate stm32f103xx;
use rtfm::app;
app! { //~ error proc macro panicked
2017-07-20 23:16:40 +02:00
device: stm32f103xx,
tasks: {
// ERROR exceptions can't be enabled / disabled here
SYS_TICK: {
enabled: true,
priority: 1,
},
},
}
fn init(_p: init::Peripherals) {}
fn idle() -> ! {
loop {}
}