Skip to content
Snippets Groups Projects
Commit b0c9b6f1 authored by Stephen D's avatar Stephen D
Browse files

remove print statement

parent 4ed5e89b
No related branches found
No related tags found
No related merge requests found
......@@ -30,9 +30,9 @@ impl UartRadio {
// wait until we have space for packets
while buf != [0x02] {
println!("full buf! sleeping...");
sleep(Duration::from_millis(10));
// poll to see if the buffer has emptied yet
self.uart.write_all(&[0x00])?;
self.uart.flush()?;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment