trying to create minimal compiling example
This commit is contained in:
10
examples/minimal-blinky.rs
Normal file
10
examples/minimal-blinky.rs
Normal file
@ -0,0 +1,10 @@
|
||||
#![no_main]
|
||||
#![no_std]
|
||||
|
||||
use cortex_m_rt::entry;
|
||||
use va108xx;
|
||||
|
||||
#[entry]
|
||||
fn main() -> ! {
|
||||
let mut dp = va108xx::Peripherals::take();
|
||||
}
|
Reference in New Issue
Block a user