diff options
Diffstat (limited to 'examples/extern_binds.rs')
-rw-r--r-- | examples/extern_binds.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/extern_binds.rs b/examples/extern_binds.rs index 4dc6633c..c9fc1086 100644 --- a/examples/extern_binds.rs +++ b/examples/extern_binds.rs @@ -26,12 +26,12 @@ mod app { struct Local {} #[init] - fn init(_: init::Context) -> (Shared, Local, init::Monotonics) { + fn init(_: init::Context) -> (Shared, Local) { rtic::pend(Interrupt::UART0); hprintln!("init").unwrap(); - (Shared {}, Local {}, init::Monotonics()) + (Shared {}, Local {}) } #[idle] |