mirror of
https://github.com/ferrous-systems/embedded-trainings-2020.git
synced 2024-11-15 13:14:05 +00:00
29 lines
612 B
Rust
29 lines
612 B
Rust
|
#![deny(unused_must_use)]
|
||
|
#![no_main]
|
||
|
#![no_std]
|
||
|
|
||
|
use cortex_m::asm;
|
||
|
use cortex_m_rt::entry;
|
||
|
use dk::ieee802154::{Packet, Channel, TxPower};
|
||
|
use panic_log as _; // the panicking behavior
|
||
|
|
||
|
#[entry]
|
||
|
fn main() -> ! {
|
||
|
let board = dk::init().unwrap();
|
||
|
let mut radio = board.radio;
|
||
|
|
||
|
// these are the initial settings
|
||
|
radio.set_channel(Channel::_20);
|
||
|
radio.set_txpower(TxPower::Pos8dBm);
|
||
|
|
||
|
let mut packet = Packet::new();
|
||
|
packet.copy_from_slice(b"Hello");
|
||
|
//radio.send(&packet);
|
||
|
let res = radio.try_send(&packet);
|
||
|
log::info!("{:?}", res);
|
||
|
|
||
|
loop {
|
||
|
asm::bkpt();
|
||
|
}
|
||
|
}
|