diff --git a/examples/rtic_bare3.rs b/examples/rtic_bare3.rs index 3ad888e651370012499ecf5925145c41b3fa95b0..c339fc55f6be095e066ba6812a4e05310d8fae35 100644 --- a/examples/rtic_bare3.rs +++ b/examples/rtic_bare3.rs @@ -28,7 +28,7 @@ const APP: () = { // notice all printing outside of the section to measure! hprintln!("Start {:?}", start).ok(); hprintln!("End {:?}", end).ok(); - hprintln!("Diff {:?}", Instant::duration_since(&end, start).as_cycles()).ok(); + hprintln!("Diff {:?}", start.elapsed().as_cycles()).ok(); } }; @@ -100,7 +100,9 @@ fn wait(i: u32) { // // What is now the output in the Adapter Output console? // -// ** your answer here ** +// Start Instant(2374747659) +// End Instant(2378747675) +// Diff 4001549 // // Commit your answers (bare3_3) //