diff options
author | 2023-01-07 17:59:39 +0100 | |
---|---|---|
committer | 2023-03-01 00:33:24 +0100 | |
commit | 9a4f97ca5ebf19e6612115db5c763d0d61dd28a1 (patch) | |
tree | 1f37d247f715ad3d5215aa7de3aa6d4eb94a7027 /examples/smallest.rs | |
parent | 5606ba3cf38c80be5d3e9c88ad4da9982b114851 (diff) | |
download | rtic-9a4f97ca5ebf19e6612115db5c763d0d61dd28a1.tar.gz rtic-9a4f97ca5ebf19e6612115db5c763d0d61dd28a1.tar.zst rtic-9a4f97ca5ebf19e6612115db5c763d0d61dd28a1.zip |
more examples
Diffstat (limited to 'examples/smallest.rs')
-rw-r--r-- | examples/smallest.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/smallest.rs b/examples/smallest.rs index b121fcff..5071392d 100644 --- a/examples/smallest.rs +++ b/examples/smallest.rs @@ -17,8 +17,8 @@ mod app { struct Local {} #[init] - fn init(_: init::Context) -> (Shared, Local, init::Monotonics) { + fn init(_: init::Context) -> (Shared, Local) { debug::exit(debug::EXIT_SUCCESS); // Exit QEMU simulator - (Shared {}, Local {}, init::Monotonics()) + (Shared {}, Local {}) } } |