diff options
| author | goueslati <[email protected]> | 2023-07-12 15:06:56 +0100 |
|---|---|---|
| committer | goueslati <[email protected]> | 2023-07-12 15:06:56 +0100 |
| commit | d5a4457b5e3a95a12f249315fb1d9b6a577307f2 (patch) | |
| tree | 6f0b4c98653ce287b483a14dc2a031b2ee6de638 /embassy-stm32-wpan/Cargo.toml | |
| parent | fbddfcbfb7f732db593eecd5383742d9ce7308e7 (diff) | |
parsing MAC structs
Diffstat (limited to 'embassy-stm32-wpan/Cargo.toml')
| -rw-r--r-- | embassy-stm32-wpan/Cargo.toml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/embassy-stm32-wpan/Cargo.toml b/embassy-stm32-wpan/Cargo.toml index 4b5dcdd29..1325faed9 100644 --- a/embassy-stm32-wpan/Cargo.toml +++ b/embassy-stm32-wpan/Cargo.toml | |||
| @@ -26,13 +26,14 @@ aligned = "0.4.1" | |||
| 26 | bit_field = "0.10.2" | 26 | bit_field = "0.10.2" |
| 27 | stm32-device-signature = { version = "0.3.3", features = ["stm32wb5x"] } | 27 | stm32-device-signature = { version = "0.3.3", features = ["stm32wb5x"] } |
| 28 | stm32wb-hci = { version = "0.1.2", features = ["version-5-0"], optional = true } | 28 | stm32wb-hci = { version = "0.1.2", features = ["version-5-0"], optional = true } |
| 29 | bitflags = { version = "2.3.3", optional = true } | ||
| 29 | 30 | ||
| 30 | [features] | 31 | [features] |
| 31 | default = ["stm32wb55rg", "mac", "ble"] | 32 | default = ["stm32wb55rg", "mac", "ble", "defmt"] |
| 32 | defmt = ["dep:defmt", "embassy-sync/defmt", "embassy-embedded-hal/defmt", "embassy-hal-common/defmt"] | 33 | defmt = ["dep:defmt", "embassy-sync/defmt", "embassy-embedded-hal/defmt", "embassy-hal-common/defmt"] |
| 33 | 34 | ||
| 34 | ble = ["dep:stm32wb-hci"] | 35 | ble = ["dep:stm32wb-hci"] |
| 35 | mac = [] | 36 | mac = ["dep:bitflags"] |
| 36 | 37 | ||
| 37 | stm32wb10cc = [ "embassy-stm32/stm32wb10cc" ] | 38 | stm32wb10cc = [ "embassy-stm32/stm32wb10cc" ] |
| 38 | stm32wb15cc = [ "embassy-stm32/stm32wb15cc" ] | 39 | stm32wb15cc = [ "embassy-stm32/stm32wb15cc" ] |
| @@ -49,4 +50,4 @@ stm32wb55rg = [ "embassy-stm32/stm32wb55rg" ] | |||
| 49 | stm32wb55vc = [ "embassy-stm32/stm32wb55vc" ] | 50 | stm32wb55vc = [ "embassy-stm32/stm32wb55vc" ] |
| 50 | stm32wb55ve = [ "embassy-stm32/stm32wb55ve" ] | 51 | stm32wb55ve = [ "embassy-stm32/stm32wb55ve" ] |
| 51 | stm32wb55vg = [ "embassy-stm32/stm32wb55vg" ] | 52 | stm32wb55vg = [ "embassy-stm32/stm32wb55vg" ] |
| 52 | stm32wb55vy = [ "embassy-stm32/stm32wb55vy" ] \ No newline at end of file | 53 | stm32wb55vy = [ "embassy-stm32/stm32wb55vy" ] |
