aboutsummaryrefslogtreecommitdiff
path: root/examples/hardware.rs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/hardware.rs')
-rw-r--r--examples/hardware.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/examples/hardware.rs b/examples/hardware.rs
index 9f1c664e..8105a742 100644
--- a/examples/hardware.rs
+++ b/examples/hardware.rs
@@ -30,7 +30,9 @@ const APP: () = {
debug::exit(debug::EXIT_SUCCESS);
- loop {}
+ loop {
+ cortex_m::asm::nop();
+ }
}
#[task(binds = UART0)]