mirror of
https://github.com/ferrous-systems/embedded-trainings-2020.git
synced 2024-11-15 21:21:11 +00:00
24 lines
544 B
Rust
24 lines
544 B
Rust
#![deny(unused_must_use)]
|
|
#![no_main]
|
|
#![no_std]
|
|
|
|
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");
|
|
let res = radio.try_send(&packet);
|
|
log::info!("{:?}", res);
|
|
|
|
dk::exit();
|
|
}
|