diff options
Diffstat (limited to 'examples/binds.rs')
-rw-r--r-- | examples/binds.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/examples/binds.rs b/examples/binds.rs index faf315f4..82bf8964 100644 --- a/examples/binds.rs +++ b/examples/binds.rs @@ -27,7 +27,9 @@ const APP: () = { debug::exit(debug::EXIT_SUCCESS); - loop {} + loop { + cortex_m::asm::nop(); + } } #[task(binds = UART0)] |