diff --git a/examples/bare9.rs b/examples/bare9.rs index dbfb8690a9989387449b01c17137670022bdd948..605a060cf0859bc1502b7988a6a923e0e884c5ea 100644 --- a/examples/bare9.rs +++ b/examples/bare9.rs @@ -171,16 +171,23 @@ const APP: () = { // // What did you receive, and what was the output of the ITM trace. // -// ** your answer here ** +// bare9 +// goto sleep +// woke +// n.. +// data 97 +// data 98 +// goto sleep // // Did you experience any over-run errors? // -// ** your answer here ** +// Yes, one. // // Why does it behave differently than in release mode? // Recall how the execution overhead changed with optimization level. // -// ** your answer here ** +// Our overhead ends up getting too large due to our enqueue function when not run in release mode, +// leading to USART getting more chars before it's able to terminate the current ones. // // Commit your answers (bare9_2) //