wspr-beacon/src/main.rs

20 lines
467 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 17:23:17 +02:00
use stm32f1xx_hal::pac;
use wspr_beacon::application;
2021-04-11 15:55:46 +02:00
#[cortex_m_rt::entry]
fn main() -> ! {
defmt::info!("Hello, world!");
2021-04-11 17:23:17 +02:00
// Get access to the core peripherals from the cortex-m crate
let cp = cortex_m::Peripherals::take().unwrap();
// Get access to the device specific peripherals from the peripheral access crate
let dp = pac::Peripherals::take().unwrap();
let app = application::setup(cp, dp);
app.run()
2021-04-11 15:55:46 +02:00
}