rtic/examples/minimal.rs

39 lines
713 B
Rust
Raw Normal View History

#![deny(unsafe_code)]
#![deny(warnings)]
2018-04-29 08:45:31 +02:00
#![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]
2018-04-29 08:45:31 +02:00
#![no_std]
2018-05-14 21:22:50 +02:00
#[macro_use]
extern crate cortex_m_rt;
2018-04-29 08:45:31 +02:00
extern crate cortex_m_rtfm as rtfm;
2018-05-14 21:22:50 +02:00
extern crate panic_semihosting;
2018-04-29 08:45:31 +02:00
extern crate stm32f103xx;
2018-05-14 21:22:50 +02:00
use cortex_m_rt::ExceptionFrame;
use rtfm::app;
2018-04-29 08:45:31 +02:00
app! {
device: stm32f103xx,
}
#[inline(always)]
fn init(_ctxt: init::Context) -> init::LateResources {
2018-04-29 08:45:31 +02:00
init::LateResources {}
}
2018-05-14 21:22:50 +02:00
exception!(HardFault, hard_fault);
#[inline(always)]
fn hard_fault(ef: &ExceptionFrame) -> ! {
panic!("HardFault at {:#?}", ef);
}
exception!(*, default_handler);
#[inline(always)]
fn default_handler(irqn: i16) {
panic!("Unhandled exception (IRQn = {})", irqn);
}