aboutsummaryrefslogtreecommitdiff
path: root/embassy-stm32/Cargo.toml
diff options
context:
space:
mode:
authorPer Rosengren <[email protected]>2025-09-13 19:21:44 +0200
committerPer Rosengren <[email protected]>2025-09-16 18:11:24 +0200
commit575b27f9f4412cf4d0aa18d77895117092e8c3b6 (patch)
treea6f99cd37964272027d3aa6a75a40349603bb468 /embassy-stm32/Cargo.toml
parent25e0ebf5206fa2e2906f5826c0b1587739f628d8 (diff)
ADC v3: Migrate to stm32-data g0 with enums
Also allow separate sample times in read()
Diffstat (limited to 'embassy-stm32/Cargo.toml')
-rw-r--r--embassy-stm32/Cargo.toml5
1 files changed, 3 insertions, 2 deletions
diff --git a/embassy-stm32/Cargo.toml b/embassy-stm32/Cargo.toml
index 9c2ba1f53..6cd8ed262 100644
--- a/embassy-stm32/Cargo.toml
+++ b/embassy-stm32/Cargo.toml
@@ -174,7 +174,7 @@ futures-util = { version = "0.3.30", default-features = false }
174sdio-host = "0.9.0" 174sdio-host = "0.9.0"
175critical-section = "1.1" 175critical-section = "1.1"
176#stm32-metapac = { version = "18" } 176#stm32-metapac = { version = "18" }
177stm32-metapac = { git = "https://github.com/embassy-rs/stm32-data-generated", tag = "stm32-data-d8432edd0406495adec19d31923584e80b8e03cb" } 177stm32-metapac = { git = "https://github.com/embassy-rs/stm32-data-generated", tag = "stm32-data-3cf72eac610259fd78ef16f1c63be69a144d75f7" }
178 178
179vcell = "0.1.3" 179vcell = "0.1.3"
180nb = "1.0.0" 180nb = "1.0.0"
@@ -192,6 +192,7 @@ bitflags = "2.4.2"
192 192
193block-device-driver = { version = "0.2" } 193block-device-driver = { version = "0.2" }
194aligned = "0.4.1" 194aligned = "0.4.1"
195heapless = "0.9.1"
195 196
196[dev-dependencies] 197[dev-dependencies]
197critical-section = { version = "1.1", features = ["std"] } 198critical-section = { version = "1.1", features = ["std"] }
@@ -203,7 +204,7 @@ proc-macro2 = "1.0.36"
203quote = "1.0.15" 204quote = "1.0.15"
204 205
205#stm32-metapac = { version = "18", default-features = false, features = ["metadata"]} 206#stm32-metapac = { version = "18", default-features = false, features = ["metadata"]}
206stm32-metapac = { git = "https://github.com/embassy-rs/stm32-data-generated", tag = "stm32-data-d8432edd0406495adec19d31923584e80b8e03cb", default-features = false, features = ["metadata"] } 207stm32-metapac = { git = "https://github.com/embassy-rs/stm32-data-generated", tag = "stm32-data-3cf72eac610259fd78ef16f1c63be69a144d75f7", default-features = false, features = ["metadata"] }
207 208
208[features] 209[features]
209default = ["rt"] 210default = ["rt"]