From c49b8e9dc296cffb1c00f14ed3bba366bf1e274b Mon Sep 17 00:00:00 2001 From: Ridgep <ridpet-5@student.ltu.se> Date: Tue, 12 Mar 2019 15:21:42 +0100 Subject: [PATCH] bare9_1 --- examples/bare9.rs | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/examples/bare9.rs b/examples/bare9.rs index ecb7aa9..dbfb869 100644 --- a/examples/bare9.rs +++ b/examples/bare9.rs @@ -136,15 +136,28 @@ const APP: () = { // // What did you receive, and what was the output of the ITM trace. // -// ** your answer here ** +// Received ASCII -> abcd +// +// bare9 +// goto sleep +// woken.. +// data 97 +// goto sleep +// woken.. +// data 98 +// goto sleep +// woken.. +// data 99 +// data 100 +// goto sleep // // Did you experience any over-run errors? // -// ** your answer here ** +// No // // Why does it behave differently than bare7/bare8? // -// ** your answer here ** +// Instead of printing directly using usart, we write it to tx and queue the byte for later use. // // Commit your answers (bare9_1) // -- GitLab