2025-04-12 16:54:57 +02:00

15 lines
215 B
Rust

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