simplyfied layout

This commit is contained in:
Sebastian 2021-04-11 16:21:01 +02:00
parent 94dce3b2e2
commit d0b5039b71
1 changed files with 3 additions and 3 deletions

View File

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