aboutsummaryrefslogtreecommitdiff
path: root/examples/types.rs
diff options
context:
space:
mode:
authorEmil Fresk <emil.fresk@gmail.com>2020-09-14 09:35:10 +0200
committerEmil Fresk <emil.fresk@gmail.com>2020-09-14 09:35:10 +0200
commit413f525c933e0beba498b486afc3a81b84951989 (patch)
treeffc810a3fb0e764838eea6d75107bc7a3b662314 /examples/types.rs
parentc5e6d1fa49e3596227a8ee8fe89e2e4f66db3169 (diff)
Fixed so examples do not crash in release mode
Diffstat (limited to 'examples/types.rs')
-rw-r--r--examples/types.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/examples/types.rs b/examples/types.rs
index e14ab0c..5233f86 100644
--- a/examples/types.rs
+++ b/examples/types.rs
@@ -32,7 +32,9 @@ const APP: () = {
let _: idle::Schedule = cx.schedule;
let _: idle::Spawn = cx.spawn;
- loop {}
+ loop {
+ cortex_m::asm::nop();
+ }
}
#[task(binds = UART0, resources = [shared], schedule = [foo], spawn = [foo])]