We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0aab04 commit a595a01Copy full SHA for a595a01
examples/rtic2-tick.rs
@@ -2,6 +2,11 @@
2
#![no_std]
3
#![feature(type_alias_impl_trait)]
4
5
+//Add this to Cargo.toml if you want to use SysTick as monotonic timer
6
+//[dependencies.rtic-monotonics]
7
+//version = "2.0"
8
+//features = ["cortex-m-systick"]
9
+
10
use defmt_rtt as _;
11
use panic_probe as _;
12
use rtic_time::Monotonic;
@@ -60,8 +65,3 @@ mod app {
60
65
}
61
66
62
67
63
-
64
-//Add this to Cargo.toml if use SysTick as monotonic timer
-//[dependencies.rtic-monotonics]
-//version = "2.0"
-//features = ["cortex-m-systick"]
0 commit comments