diff options
author | 2023-01-11 21:40:33 +0100 | |
---|---|---|
committer | 2023-01-11 21:40:33 +0100 | |
commit | c370c0b21f054fa224680b95df63ca3d59f33ba1 (patch) | |
tree | 2969b2084e81228aa17615498d8154178c0a8e41 /examples/extern_binds.rs | |
parent | 1fe587c5160b9e99bbb67644318cb9e5c9c56b4e (diff) | |
download | rtic-c370c0b21f054fa224680b95df63ca3d59f33ba1.tar.gz rtic-c370c0b21f054fa224680b95df63ca3d59f33ba1.tar.zst rtic-c370c0b21f054fa224680b95df63ca3d59f33ba1.zip |
Remove ok() from hprintln!()
sd 'hprintln(.*).ok\(\)' 'hprintln' (fd -e rs .)
Diffstat (limited to 'examples/extern_binds.rs')
-rw-r--r-- | examples/extern_binds.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/extern_binds.rs b/examples/extern_binds.rs index b6df2fb2..e445f4ec 100644 --- a/examples/extern_binds.rs +++ b/examples/extern_binds.rs @@ -10,7 +10,7 @@ use panic_semihosting as _; // Free function implementing the interrupt bound task `foo`. fn foo(_: app::foo::Context) { - hprintln!("foo called").ok(); + hprintln!("foo called"); } #[rtic::app(device = lm3s6965)] |