15 lines
210 B
Rust
15 lines
210 B
Rust
//! Dummy app which does not do anything.
|
|
#![no_main]
|
|
#![no_std]
|
|
|
|
use cortex_m_rt::entry;
|
|
use panic_probe as _;
|
|
use va108xx_hal as _;
|
|
|
|
#[entry]
|
|
fn main() -> ! {
|
|
loop {
|
|
cortex_m::asm::nop();
|
|
}
|
|
}
|