aboutsummaryrefslogtreecommitdiff
path: root/embassy-stm32/Cargo.toml
diff options
context:
space:
mode:
authorGerzain Mata <[email protected]>2025-07-25 18:57:27 -0700
committerGerzain Mata <[email protected]>2025-07-25 18:59:10 -0700
commita5e8891fe315e2ee84992d94bd7f7d5b7710cce6 (patch)
tree84de7eac12d3b6abeb920f5bd0f040bbe7501157 /embassy-stm32/Cargo.toml
parent996974e313fa5ec2c7c2d9dd0998fab244c0a180 (diff)
Added support for PLL as a clock source on STM32WBA
- PLL multiplier and dividers work - Added timer example
Diffstat (limited to 'embassy-stm32/Cargo.toml')
-rw-r--r--embassy-stm32/Cargo.toml4
1 files changed, 2 insertions, 2 deletions
diff --git a/embassy-stm32/Cargo.toml b/embassy-stm32/Cargo.toml
index 02e75733e..520443466 100644
--- a/embassy-stm32/Cargo.toml
+++ b/embassy-stm32/Cargo.toml
@@ -81,7 +81,7 @@ futures-util = { version = "0.3.30", default-features = false }
81sdio-host = "0.9.0" 81sdio-host = "0.9.0"
82critical-section = "1.1" 82critical-section = "1.1"
83#stm32-metapac = { version = "16" } 83#stm32-metapac = { version = "16" }
84stm32-metapac = { git = "https://github.com/embassy-rs/stm32-data-generated", tag = "stm32-data-9fc86ca7b3a8bc05182bf1ce3045602df1f5dce3" } 84stm32-metapac = { git = "https://github.com/embassy-rs/stm32-data-generated", tag = "stm32-data-df3f5212f2dd70955a6b3d0137e7b4457c6047bf" }
85 85
86vcell = "0.1.3" 86vcell = "0.1.3"
87nb = "1.0.0" 87nb = "1.0.0"
@@ -110,7 +110,7 @@ proc-macro2 = "1.0.36"
110quote = "1.0.15" 110quote = "1.0.15"
111 111
112#stm32-metapac = { version = "16", default-features = false, features = ["metadata"]} 112#stm32-metapac = { version = "16", default-features = false, features = ["metadata"]}
113stm32-metapac = { git = "https://github.com/embassy-rs/stm32-data-generated", tag = "stm32-data-9fc86ca7b3a8bc05182bf1ce3045602df1f5dce3", default-features = false, features = ["metadata"] } 113stm32-metapac = { git = "https://github.com/embassy-rs/stm32-data-generated", tag = "stm32-data-df3f5212f2dd70955a6b3d0137e7b4457c6047bf", default-features = false, features = ["metadata"] }
114 114
115[features] 115[features]
116default = ["rt"] 116default = ["rt"]