aboutsummaryrefslogtreecommitdiff
path: root/examples/stm32f0
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2022-01-24 00:24:23 +0100
committerDario Nieuwenhuis <[email protected]>2022-01-24 00:24:53 +0100
commit79f60adbfba41b4abec7b9d1444bf64e5423feaa (patch)
tree8784a972c4ea3d01d4fddec5283e4613c025b3d2 /examples/stm32f0
parent6b0cb0609b4bfa3e464e4603ce373a9de9886103 (diff)
stm32: add `time-driver-any` cargo feature that automatically picks one available timer.
Diffstat (limited to 'examples/stm32f0')
-rw-r--r--examples/stm32f0/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/stm32f0/Cargo.toml b/examples/stm32f0/Cargo.toml
index f13ef0949..ca06db031 100644
--- a/examples/stm32f0/Cargo.toml
+++ b/examples/stm32f0/Cargo.toml
@@ -14,5 +14,5 @@ defmt = "0.3"
14defmt-rtt = "0.3" 14defmt-rtt = "0.3"
15panic-probe = "0.3" 15panic-probe = "0.3"
16embassy = { path = "../../embassy", features = ["defmt"] } 16embassy = { path = "../../embassy", features = ["defmt"] }
17embassy-stm32 = { path = "../../embassy-stm32", features = ["defmt", "memory-x", "stm32f030f4", "time-driver-tim3"] } 17embassy-stm32 = { path = "../../embassy-stm32", features = ["defmt", "memory-x", "stm32f030f4", "time-driver-any"] }
18 18