All checks were successful
Rust/va416xx-rs/pipeline/head This commit looks good
Monorepo for Rust support of VA416XX family of radiation hardened MCUs
14 lines
193 B
Rust
14 lines
193 B
Rust
//! Dummy app which does not do anything.
|
|
#![no_main]
|
|
#![no_std]
|
|
|
|
use cortex_m_rt::entry;
|
|
use panic_rtt_target as _;
|
|
|
|
#[entry]
|
|
fn main() -> ! {
|
|
loop {
|
|
cortex_m::asm::nop();
|
|
}
|
|
}
|