diff options
author | 2020-12-12 23:31:05 +0100 | |
---|---|---|
committer | 2020-12-12 23:35:47 +0100 | |
commit | 1c8de78f6f6e9e265d9d894d2ebde622bf16d44e (patch) | |
tree | 0ce6ed85be7c80e6204adb8bea8467db29a8f9f2 /examples/test_new_monotonic.rs | |
parent | 8e8ec9b7b879adae8d4de6cb2320b9b19290a7e0 (diff) | |
download | rtic-1c8de78f6f6e9e265d9d894d2ebde622bf16d44e.tar.gz rtic-1c8de78f6f6e9e265d9d894d2ebde622bf16d44e.tar.zst rtic-1c8de78f6f6e9e265d9d894d2ebde622bf16d44e.zip |
Cleanup
Diffstat (limited to 'examples/test_new_monotonic.rs')
-rw-r--r-- | examples/test_new_monotonic.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/examples/test_new_monotonic.rs b/examples/test_new_monotonic.rs index d2530c66..3323c09b 100644 --- a/examples/test_new_monotonic.rs +++ b/examples/test_new_monotonic.rs @@ -15,8 +15,7 @@ mod app { type MyMono2 = hal::Mono2; #[init] - fn init(cx: init::Context) -> (init::LateResources, init::Monotonics) { - } + fn init(cx: init::Context) -> (init::LateResources, init::Monotonics) {} #[task] fn task1(_: task1::Context) {} @@ -24,4 +23,3 @@ mod app { #[task] fn task2(_: task2::Context) {} } - |