#![deny(unused_must_use)] #![no_main] #![no_std] use cortex_m_rt::entry; use dk::ieee802154::{Channel, Packet}; use panic_log as _; // the panicking behavior const TEN_MS: u32 = 10_000; #[entry] fn main() -> ! { let board = dk::init().unwrap(); let mut radio = board.radio; let mut timer = board.timer; // puzzle.hex uses channel 25 radio.set_channel(Channel::_25); let mut packet = Packet::new(); // letter 'A' (uppercase) let source = 65; // let source = b'A'; // this is the same as above // TODO try other letters // single letter (byte) packet packet.copy_from_slice(&[source]); radio.send(&packet); if radio.recv_timeout(&mut packet, &mut timer, TEN_MS).is_ok() { // response should be one byte large if packet.len() == 1 { let destination = packet[0]; log::info!("{} -> {}", source, destination); // or cast to `char` for a more readable output log::info!("{:?} -> {:?}", source as char, destination as char); } else { log::error!("response packet was not a single byte"); dk::exit() } } else { log::error!("no response or response packet was corrupted"); dk::exit() } // TODO next do the whole ASCII range [0, 127] // start small: just 'A' and 'B' at first // OR for source in b'A'..=b'B' (NOTE: inclusive range) for source in 65..67 { // TODO similar procedure as above } dk::exit() }