diff --git a/beginner/apps/src/bin/radio-send.rs b/beginner/apps/src/bin/radio-send.rs index 5b0131c..774afe3 100644 --- a/beginner/apps/src/bin/radio-send.rs +++ b/beginner/apps/src/bin/radio-send.rs @@ -2,7 +2,6 @@ #![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 diff --git a/tools/serial-term/src/main.rs b/tools/serial-term/src/main.rs index fcaef79..7f328d3 100644 --- a/tools/serial-term/src/main.rs +++ b/tools/serial-term/src/main.rs @@ -1,6 +1,5 @@ use core::sync::atomic::{AtomicBool, Ordering}; use std::{ - fs::OpenOptions, io::{self, Read as _, Write as _}, thread, time::Duration,