We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e072590 commit 61d1158Copy full SHA for 61d1158
samples/embassy/Cargo.toml
@@ -28,17 +28,16 @@ features = [
28
29
[dependencies.embassy-futures]
30
version = "0.1.1"
31
-# path = "../../embassy/embassy-futures"
32
33
[dependencies.embassy-sync]
34
version = "0.6.2"
35
-# path = "../../embassy/embassy-sync"
36
37
[dependencies.embassy-time]
38
version = "0.4.0"
39
-# path = "../../embassy/embassy-time"
40
-# This is board specific.
41
-features = ["tick-hz-10_000"]
+# For real builds, you should figure out your target's tick rate and set the appropriate feature,
+# like in these examples. Without this, embassy-time will assume a 1Mhz tick rate, and every time
+# operation will involve a conversion.
+#features = ["tick-hz-10_000"]
42
43
[dependencies.critical-section]
44
version = "1.2"
0 commit comments