mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 20:22:51 +01:00
22 lines
411 B
Rust
22 lines
411 B
Rust
#![deny(unsafe_code)]
|
|
#![deny(warnings)]
|
|
#![feature(proc_macro)]
|
|
#![no_main]
|
|
#![no_std]
|
|
|
|
extern crate cortex_m_rtfm as rtfm;
|
|
extern crate panic_itm;
|
|
extern crate stm32f103xx;
|
|
|
|
use rtfm::app;
|
|
|
|
app! { //~ mismatched types
|
|
device: stm32f103xx,
|
|
}
|
|
|
|
fn init(_ctxt: init::Context) -> init::LateResources {
|
|
init::LateResources {}
|
|
}
|
|
|
|
// ERROR `idle` must be a diverging function
|
|
fn idle(_ctxt: idle::Context) {}
|