diff options
| author | xoviat <[email protected]> | 2023-07-18 20:52:03 -0500 |
|---|---|---|
| committer | xoviat <[email protected]> | 2023-07-18 20:52:03 -0500 |
| commit | ca1d4179a792d4a33b4f2b97b33002759fd28a21 (patch) | |
| tree | 9df5aa97c8a61b8b4f1c777cef6d871d5e51fe7c /embassy-stm32-wpan/Cargo.toml | |
| parent | 890d113b855dc11be75a9716401c7703f4ce48e1 (diff) | |
wpan: implement initial event loop
Diffstat (limited to 'embassy-stm32-wpan/Cargo.toml')
| -rw-r--r-- | embassy-stm32-wpan/Cargo.toml | 4 |
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" } | |||
| 18 | embassy-hal-common = { version = "0.1.0", path = "../embassy-hal-common" } | 18 | embassy-hal-common = { version = "0.1.0", path = "../embassy-hal-common" } |
| 19 | embassy-embedded-hal = { version = "0.1.0", path = "../embassy-embedded-hal" } | 19 | embassy-embedded-hal = { version = "0.1.0", path = "../embassy-embedded-hal" } |
| 20 | embassy-net-driver-channel = { version = "0.1.0", path = "../embassy-net-driver-channel", optional=true } | 20 | embassy-net-driver-channel = { version = "0.1.0", path = "../embassy-net-driver-channel", optional=true } |
| 21 | embassy-net-driver = { version = "0.1.0", path = "../embassy-net-driver", optional=true } | ||
| 21 | 22 | ||
| 22 | defmt = { version = "0.3", optional = true } | 23 | defmt = { version = "0.3", optional = true } |
| 23 | cortex-m = "0.7.6" | 24 | cortex-m = "0.7.6" |
| @@ -27,13 +28,14 @@ aligned = "0.4.1" | |||
| 27 | bit_field = "0.10.2" | 28 | bit_field = "0.10.2" |
| 28 | stm32-device-signature = { version = "0.3.3", features = ["stm32wb5x"] } | 29 | stm32-device-signature = { version = "0.3.3", features = ["stm32wb5x"] } |
| 29 | stm32wb-hci = { version = "0.1.3", optional = true } | 30 | stm32wb-hci = { version = "0.1.3", optional = true } |
| 31 | futures = { version = "0.3.17", default-features = false, features = ["async-await"] } | ||
| 30 | bitflags = { version = "2.3.3", optional = true } | 32 | bitflags = { version = "2.3.3", optional = true } |
| 31 | 33 | ||
| 32 | [features] | 34 | [features] |
| 33 | defmt = ["dep:defmt", "embassy-sync/defmt", "embassy-embedded-hal/defmt", "embassy-hal-common/defmt", "stm32wb-hci?/defmt"] | 35 | defmt = ["dep:defmt", "embassy-sync/defmt", "embassy-embedded-hal/defmt", "embassy-hal-common/defmt", "stm32wb-hci?/defmt"] |
| 34 | 36 | ||
| 35 | ble = ["dep:stm32wb-hci"] | 37 | ble = ["dep:stm32wb-hci"] |
| 36 | mac = ["dep:bitflags", "dep:embassy-net-driver-channel"] | 38 | mac = ["dep:bitflags", "dep:embassy-net-driver-channel", "dep:embassy-net-driver"] |
| 37 | 39 | ||
| 38 | stm32wb10cc = [ "embassy-stm32/stm32wb10cc" ] | 40 | stm32wb10cc = [ "embassy-stm32/stm32wb10cc" ] |
| 39 | stm32wb15cc = [ "embassy-stm32/stm32wb15cc" ] | 41 | stm32wb15cc = [ "embassy-stm32/stm32wb15cc" ] |
