diff --git a/examples/bare10.rs b/examples/bare10.rs index 5629764be973a7a5a99125d8e9e6c00b58446c95..e3702997b603842cd2e954af14ce0912366fac5d 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) //