aboutsummaryrefslogtreecommitdiff
path: root/examples/stm32wba
diff options
context:
space:
mode:
authorMax <[email protected]>2025-02-10 08:14:15 +0100
committerGitHub <[email protected]>2025-02-10 08:14:15 +0100
commite5d0d408296efaf4e628d608f26d8d1213c2d934 (patch)
tree85bf037d662e39b228946f61564adcc5c372ac25 /examples/stm32wba
parentbcebe4c4d5b597da0b8741916e450c46e6fef06e (diff)
Update Cargo.toml : replace STM32WBA52CGU by STM32WBA55CG
Following PR https://github.com/embassy-rs/embassy/pull/3852 , I forgot to update the dependency. The WBA55 Nucleo board officially replaces the WBA52. Even if WBA52 SoC is still part of the ST CubeFW, the SW connectivity projects for WBA52 are no longer delivered. WBA55 Nucleo board is now the reference entry board.
Diffstat (limited to 'examples/stm32wba')
-rw-r--r--examples/stm32wba/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/stm32wba/Cargo.toml b/examples/stm32wba/Cargo.toml
index 59a41da88..dd1ce21d9 100644
--- a/examples/stm32wba/Cargo.toml
+++ b/examples/stm32wba/Cargo.toml
@@ -5,7 +5,7 @@ version = "0.1.0"
5license = "MIT OR Apache-2.0" 5license = "MIT OR Apache-2.0"
6 6
7[dependencies] 7[dependencies]
8embassy-stm32 = { version = "0.2.0", path = "../../embassy-stm32", features = [ "defmt", "stm32wba52cg", "time-driver-any", "memory-x", "exti"] } 8embassy-stm32 = { version = "0.2.0", path = "../../embassy-stm32", features = [ "defmt", "stm32wba55cg", "time-driver-any", "memory-x", "exti"] }
9embassy-sync = { version = "0.6.2", path = "../../embassy-sync", features = ["defmt"] } 9embassy-sync = { version = "0.6.2", path = "../../embassy-sync", features = ["defmt"] }
10embassy-executor = { version = "0.7.0", path = "../../embassy-executor", features = ["task-arena-size-32768", "arch-cortex-m", "executor-thread", "defmt"] } 10embassy-executor = { version = "0.7.0", path = "../../embassy-executor", features = ["task-arena-size-32768", "arch-cortex-m", "executor-thread", "defmt"] }
11embassy-time = { version = "0.4.0", path = "../../embassy-time", features = ["defmt", "defmt-timestamp-uptime", "tick-hz-32_768"] } 11embassy-time = { version = "0.4.0", path = "../../embassy-time", features = ["defmt", "defmt-timestamp-uptime", "tick-hz-32_768"] }