aboutsummaryrefslogtreecommitdiff
path: root/examples/hardware.rs
diff options
context:
space:
mode:
authorPer Lindgren <per.lindgren@ltu.se>2023-01-07 17:59:39 +0100
committerHenrik Tjäder <henrik@tjaders.com>2023-03-01 00:33:24 +0100
commit9a4f97ca5ebf19e6612115db5c763d0d61dd28a1 (patch)
tree1f37d247f715ad3d5215aa7de3aa6d4eb94a7027 /examples/hardware.rs
parent5606ba3cf38c80be5d3e9c88ad4da9982b114851 (diff)
more examples
Diffstat (limited to 'examples/hardware.rs')
-rw-r--r--examples/hardware.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/hardware.rs b/examples/hardware.rs
index 6063224..8e4f423 100644
--- a/examples/hardware.rs
+++ b/examples/hardware.rs
@@ -19,14 +19,14 @@ mod app {
struct Local {}
#[init]
- fn init(_: init::Context) -> (Shared, Local, init::Monotonics) {
+ fn init(_: init::Context) -> (Shared, Local) {
// Pends the UART0 interrupt but its handler won't run until *after*
// `init` returns because interrupts are disabled
rtic::pend(Interrupt::UART0); // equivalent to NVIC::pend
hprintln!("init").unwrap();
- (Shared {}, Local {}, init::Monotonics())
+ (Shared {}, Local {})
}
#[idle]