2017-12-09 15:12:42 +01:00
|
|
|
#![deny(unsafe_code)]
|
2017-07-18 22:14:39 +02: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-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;
|
|
|
|
|
|
|
|
use rtfm::app;
|
|
|
|
|
2018-05-07 17:46:26 +02:00
|
|
|
app! { //~ error mismatched types
|
|
|
|
//~^ incorrect number of function parameters
|
2017-07-18 22:14:39 +02:00
|
|
|
device: stm32f103xx,
|
|
|
|
}
|
|
|
|
|
|
|
|
// ERROR `init` must have signature `fn (init::Peripherals)`
|
|
|
|
fn init() {}
|