wspr-beacon/src/bin/hello.rs

12 lines
202 B
Rust

#![no_main]
#![no_std]
use wspr_beacon as _; // global logger + panicking-behavior + memory layout
#[cortex_m_rt::entry]
fn main() -> ! {
defmt::info!("Hello, world!");
wspr_beacon::exit()
}