aboutsummaryrefslogtreecommitdiff
path: root/examples/t-late-not-send.rs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/t-late-not-send.rs')
-rw-r--r--examples/t-late-not-send.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/examples/t-late-not-send.rs b/examples/t-late-not-send.rs
index c464e73b..d2a9b63c 100644
--- a/examples/t-late-not-send.rs
+++ b/examples/t-late-not-send.rs
@@ -31,6 +31,8 @@ const APP: () = {
#[idle(resources = [x, y])]
fn idle(_: idle::Context) -> ! {
- loop {}
+ loop {
+ cortex_m::asm::nop();
+ }
}
};