wspr-beacon/src/main.rs

12 lines
136 B
Rust

#![no_std]
#![no_main]
use wspr_beacon::exit;
#[cortex_m_rt::entry]
fn main() -> ! {
defmt::info!("Hello, world!");
exit()
}