Skip to content
Snippets Groups Projects
Commit 03f80b1a authored by Per Lindgren's avatar Per Lindgren
Browse files

typo fixed

parent 6d483d4d
No related branches found
No related tags found
No related merge requests found
......@@ -153,8 +153,9 @@ const APP: () = {
// execution time of the lock.
//
// (gdb) c
// timing_resources::idle (cx=...) at examples/timing_resources.rs:36
// 36 asm::bkpt();
// received signal SIGTRAP, Trace/breakpoint trap.
// timing_resources::exti1 (cx=...) at examples/timing_resources.rs:47
// 47 asm::bkpt();
//
// (gdb) x 0xe0001004
//
......@@ -231,7 +232,7 @@ const APP: () = {
//
// [Your answer here]
//
// This is the total execution time of.
// This is the total execution time of:
//
// - pending a task `exti0` for execution
// - preempt `exti1`
......@@ -246,7 +247,7 @@ const APP: () = {
//
// You find a comparison to a typical threaded counterpart `freeRTOS` in Table 1.
//
// Give a rough estimate based on this info how long the complete task `uart1`,
// Give a rough estimate based on this info how long the complete task `exti1`,
// would take to execute if written in FreeRTOS. (Include the context switch, to higher
// priority task, the mutex lock/unlock in both "threads".)
//
......@@ -260,6 +261,6 @@ const APP: () = {
// Why do you think RTIC + Rust + LLVM can do a better job than hand written
// C code + Macros + gcc?
//
// (Hint, what possible optimization can safely be applied.)
// (Hint, what possible optimization can safely be applied by RTIC + Rust + LLVM.)
//
// [Your answer here]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment