Skip to content
Snippets Groups Projects
Commit 4c9afa4d authored by August Svensson's avatar August Svensson
Browse files

bare9_1

parent 3d7d392e
No related branches found
No related tags found
No related merge requests found
...@@ -136,15 +136,32 @@ const APP: () = { ...@@ -136,15 +136,32 @@ const APP: () = {
// //
// What did you receive, and what was the output of the ITM trace. // What did you receive, and what was the output of the ITM trace.
// //
// ** your answer here ** // **
// USART received:
// abcd
//
// ITM received (no timestamp):
// woken..
// data 97
// goto sleep
// woken..
// data 98
// goto sleep
// woken..
// data 99
// goto sleep
//
// **
// //
// Did you experience any over-run errors? // Did you experience any over-run errors?
// //
// ** your answer here ** // ** Only if I send about 60+ bytes at a time with the terminal. **
// //
// Why does it behave differently than bare7/bare8? // Why does it behave differently than bare7/bare8?
// //
// ** your answer here ** // ** Instead of writing the debug directly to ITM from the interrupt,
// the byte is put in a queue for use when it is less busy, i.e. in
// idle(). **
// //
// Commit your answers (bare9_1) // Commit your answers (bare9_1)
// //
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment