use less unstable dependencies

This commit is contained in:
Jorge Aparicio
2018-04-24 20:56:52 +02:00
parent 43acbc4e12
commit f6988f1ced
3 changed files with 42 additions and 4 deletions

35
examples/minimal.rs Normal file
View File

@@ -0,0 +1,35 @@
#![no_main] // <- IMPORTANT!
#![no_std]
#[macro_use]
extern crate cortex_m_rt;
extern crate panic_abort;
use core::ptr;
// user entry point
main!(main);
fn main() -> ! {
loop {
unsafe {
// NOTE side affect to avoid UB
ptr::read_volatile(0x2000_0000 as *const u32);
}
}
}
// define the default exception handler
exception!(DefaultHandler, deh);
fn deh(_nr: u8) -> ! {
loop {
unsafe {
// NOTE side affect to avoid UB
ptr::read_volatile(0x2000_0004 as *const u32);
}
}
}
// bind all interrupts to the default exception handler
interrupts!(DefaultHandler);