From b6b85d3d34209bda3ef01b6186cd65ad26be9bb4 Mon Sep 17 00:00:00 2001 From: "henthe-5@student.ltu.se" <henthe-5@student.ltu.se> Date: Wed, 6 Mar 2019 13:56:16 +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 22af1a9..bcce5c6 100644 --- a/examples/bare10.rs +++ b/examples/bare10.rs @@ -79,7 +79,7 @@ const APP: () = { } } - #[task(priority = 1, resources = [ITM])] + #[task(priority = 1, capacity = 4, 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 ** +// ** We need to know the maximum size of the usart message, the frequency that the messages are sent and the maximum time it takes for the work to be finished ** // // Commit your answers (bare10_2) // -- GitLab