diff --git a/TestITM b/TestITM index c4a6a2c84751a149a4a179497494528e1696ee6c..943735bde26ee783030e5ef6ce26057a0db932c1 100644 --- a/TestITM +++ b/TestITM @@ -4,3 +4,14 @@ Error Overrun Ok 471 Error 84 +bare9 +goto sleep +woken.. +data 97 +goto sleep +woken.. +data 13 +goto sleep +woken.. +data 97 +goto sleep diff --git a/examples/bare9.rs b/examples/bare9.rs index 7d48bd09fbeb7703a03aef17249f30be2d80c246..b28431c06b8edfcd8a7abda518fc217efbd06db5 100644 --- a/examples/bare9.rs +++ b/examples/bare9.rs @@ -168,16 +168,20 @@ const APP: () = { // // What did you receive, and what was the output of the ITM trace. // -// ** your answer here ** +// bare9 +// goto sleep +// woken.. +// data 97 +// goto sleep // // Did you experience any over-run errors? // -// ** your answer here ** +// Yes // // Why does it behave differently than in release mode? // Recall how the execution overhead changed with optimization level. // -// ** your answer here ** +// The overhead gets too large because of the enqueue function and the USART will get more chars before the function terminates. // // Commit your answers (bare9_2) //