aboutsummaryrefslogtreecommitdiff
path: root/embassy-stm32-wpan/Cargo.toml
diff options
context:
space:
mode:
authorxoviat <[email protected]>2023-07-18 20:52:03 -0500
committerxoviat <[email protected]>2023-07-18 20:52:03 -0500
commitca1d4179a792d4a33b4f2b97b33002759fd28a21 (patch)
tree9df5aa97c8a61b8b4f1c777cef6d871d5e51fe7c /embassy-stm32-wpan/Cargo.toml
parent890d113b855dc11be75a9716401c7703f4ce48e1 (diff)
wpan: implement initial event loop
Diffstat (limited to 'embassy-stm32-wpan/Cargo.toml')
-rw-r--r--embassy-stm32-wpan/Cargo.toml4
1 files changed, 3 insertions, 1 deletions
diff --git a/embassy-stm32-wpan/Cargo.toml b/embassy-stm32-wpan/Cargo.toml
index 082d00f1c..ab58714d6 100644
--- a/embassy-stm32-wpan/Cargo.toml
+++ b/embassy-stm32-wpan/Cargo.toml
@@ -18,6 +18,7 @@ embassy-futures = { version = "0.1.0", path = "../embassy-futures" }
18embassy-hal-common = { version = "0.1.0", path = "../embassy-hal-common" } 18embassy-hal-common = { version = "0.1.0", path = "../embassy-hal-common" }
19embassy-embedded-hal = { version = "0.1.0", path = "../embassy-embedded-hal" } 19embassy-embedded-hal = { version = "0.1.0", path = "../embassy-embedded-hal" }
20embassy-net-driver-channel = { version = "0.1.0", path = "../embassy-net-driver-channel", optional=true } 20embassy-net-driver-channel = { version = "0.1.0", path = "../embassy-net-driver-channel", optional=true }
21embassy-net-driver = { version = "0.1.0", path = "../embassy-net-driver", optional=true }
21 22
22defmt = { version = "0.3", optional = true } 23defmt = { version = "0.3", optional = true }
23cortex-m = "0.7.6" 24cortex-m = "0.7.6"
@@ -27,13 +28,14 @@ aligned = "0.4.1"
27bit_field = "0.10.2" 28bit_field = "0.10.2"
28stm32-device-signature = { version = "0.3.3", features = ["stm32wb5x"] } 29stm32-device-signature = { version = "0.3.3", features = ["stm32wb5x"] }
29stm32wb-hci = { version = "0.1.3", optional = true } 30stm32wb-hci = { version = "0.1.3", optional = true }
31futures = { version = "0.3.17", default-features = false, features = ["async-await"] }
30bitflags = { version = "2.3.3", optional = true } 32bitflags = { version = "2.3.3", optional = true }
31 33
32[features] 34[features]
33defmt = ["dep:defmt", "embassy-sync/defmt", "embassy-embedded-hal/defmt", "embassy-hal-common/defmt", "stm32wb-hci?/defmt"] 35defmt = ["dep:defmt", "embassy-sync/defmt", "embassy-embedded-hal/defmt", "embassy-hal-common/defmt", "stm32wb-hci?/defmt"]
34 36
35ble = ["dep:stm32wb-hci"] 37ble = ["dep:stm32wb-hci"]
36mac = ["dep:bitflags", "dep:embassy-net-driver-channel"] 38mac = ["dep:bitflags", "dep:embassy-net-driver-channel", "dep:embassy-net-driver"]
37 39
38stm32wb10cc = [ "embassy-stm32/stm32wb10cc" ] 40stm32wb10cc = [ "embassy-stm32/stm32wb10cc" ]
39stm32wb15cc = [ "embassy-stm32/stm32wb15cc" ] 41stm32wb15cc = [ "embassy-stm32/stm32wb15cc" ]