wspr-beacon/src/main.rs

12 lines
136 B
Rust
Raw Normal View History

2021-04-11 15:55:46 +02:00
#![no_std]
2021-04-11 16:21:01 +02:00
#![no_main]
2021-04-11 15:55:46 +02:00
2021-04-11 16:21:01 +02:00
use wspr_beacon::exit;
2021-04-11 15:55:46 +02:00
#[cortex_m_rt::entry]
fn main() -> ! {
defmt::info!("Hello, world!");
2021-04-11 16:21:01 +02:00
exit()
2021-04-11 15:55:46 +02:00
}