diff --git a/examples/rtic_bare8.rs b/examples/rtic_bare8.rs index 299ca0a5ac591ed9b8cca0244141bc36bbe5f226..5364384cb1898fc54efb0642bbf3ee2c13aafbdf 100644 --- a/examples/rtic_bare8.rs +++ b/examples/rtic_bare8.rs @@ -76,14 +76,12 @@ const APP: () = { match block!(rx.read()) { Ok(byte) => { received += 1; - rprintln!("Ok {:b}", byte); - rprintln!("Nmbr bytes rec {:?}",received); + rprintln!("Ok {:b} Nmbr {:?}", byte, received); tx.write(byte).unwrap(); } Err(err) => { errors += 1; - rprintln!("Error {:?}", err); - rprintln!("Nmbr errors rec {:?}",errors); + rprintln!("Error {:?} Nmbr {:?}", err, errors); } } } @@ -172,8 +170,8 @@ const APP: () = { // 3. Experiment a bit, what is the max length sequence you can receive without errors? // // ** your answer here ** +// 4 but super inconsistently // -// // How did the added tracing/instrumentation affect the behavior? // // ** your answer here **