wspr-beacon/src/bin/hello.rs

12 lines
202 B
Rust
Raw Normal View History

2021-04-11 15:55:46 +02:00
#![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()
}