From a395bacb40c67f4a866eb598d9ce731f5d0a78b1 Mon Sep 17 00:00:00 2001 From: Ridgep <ridpet-5@student.ltu.se> Date: Wed, 13 Mar 2019 16:00:53 +0100 Subject: [PATCH] bare10_2 --- examples/bare10.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/bare10.rs b/examples/bare10.rs index 5629764..e370299 100644 --- a/examples/bare10.rs +++ b/examples/bare10.rs @@ -79,7 +79,7 @@ const APP: () = { } } - #[task(priority = 1, resources = [ITM])] + #[task(priority = 1, capacity = 3, resources = [ITM])] fn trace_data(byte: u8) { let stim = &mut resources.ITM.stim[0]; iprintln!(stim, "data {}", byte); @@ -169,7 +169,7 @@ const APP: () = { // // What information would you need? // -// ** your answer here ** +// How big the sequence that one would want to trace would be. // // Commit your answers (bare10_2) // -- GitLab