vorago-reb1/examples/minimal-blinky.rs

11 lines
137 B
Rust

#![no_main]
#![no_std]
use cortex_m_rt::entry;
use va108xx;
#[entry]
fn main() -> ! {
let mut dp = va108xx::Peripherals::take();
}