aboutsummaryrefslogtreecommitdiff
path: root/examples/stm32wb
diff options
context:
space:
mode:
authorxoviat <[email protected]>2023-07-15 19:02:04 -0500
committerxoviat <[email protected]>2023-07-15 19:02:04 -0500
commit0b63af33135784c1410dc8667cfefbaa538a1f04 (patch)
treed19c89092b928264ff627fc6d695c26f79d0553e /examples/stm32wb
parent25197308e3cd9694c37284b49ce1b482e22855ce (diff)
wpan: prepare net impl.
Diffstat (limited to 'examples/stm32wb')
-rw-r--r--examples/stm32wb/Cargo.toml3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/stm32wb/Cargo.toml b/examples/stm32wb/Cargo.toml
index becf2d3fb..8585b99f9 100644
--- a/examples/stm32wb/Cargo.toml
+++ b/examples/stm32wb/Cargo.toml
@@ -10,6 +10,7 @@ embassy-executor = { version = "0.2.0", path = "../../embassy-executor", feature
10embassy-time = { version = "0.1.2", path = "../../embassy-time", features = ["defmt", "defmt-timestamp-uptime", "tick-hz-32_768"] } 10embassy-time = { version = "0.1.2", path = "../../embassy-time", features = ["defmt", "defmt-timestamp-uptime", "tick-hz-32_768"] }
11embassy-stm32 = { version = "0.1.0", path = "../../embassy-stm32", features = ["nightly", "defmt", "stm32wb55rg", "time-driver-any", "memory-x", "exti"] } 11embassy-stm32 = { version = "0.1.0", path = "../../embassy-stm32", features = ["nightly", "defmt", "stm32wb55rg", "time-driver-any", "memory-x", "exti"] }
12embassy-stm32-wpan = { version = "0.1.0", path = "../../embassy-stm32-wpan", features = ["defmt", "stm32wb55rg"] } 12embassy-stm32-wpan = { version = "0.1.0", path = "../../embassy-stm32-wpan", features = ["defmt", "stm32wb55rg"] }
13embassy-net = { version = "0.1.0", path = "../../embassy-net", features = ["defmt", "udp", "medium-ieee802154", "nightly"], optional=true }
13 14
14defmt = "0.3" 15defmt = "0.3"
15defmt-rtt = "0.4" 16defmt-rtt = "0.4"
@@ -24,7 +25,7 @@ heapless = { version = "0.7.5", default-features = false }
24 25
25[features] 26[features]
26default = ["ble", "mac"] 27default = ["ble", "mac"]
27mac = ["embassy-stm32-wpan/mac"] 28mac = ["embassy-stm32-wpan/mac", "dep:embassy-net"]
28ble = ["embassy-stm32-wpan/ble"] 29ble = ["embassy-stm32-wpan/ble"]
29 30
30[[bin]] 31[[bin]]