diff options
| author | xoviat <[email protected]> | 2023-07-15 19:02:04 -0500 |
|---|---|---|
| committer | xoviat <[email protected]> | 2023-07-15 19:02:04 -0500 |
| commit | 0b63af33135784c1410dc8667cfefbaa538a1f04 (patch) | |
| tree | d19c89092b928264ff627fc6d695c26f79d0553e /examples/stm32wb | |
| parent | 25197308e3cd9694c37284b49ce1b482e22855ce (diff) | |
wpan: prepare net impl.
Diffstat (limited to 'examples/stm32wb')
| -rw-r--r-- | examples/stm32wb/Cargo.toml | 3 |
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 | |||
| 10 | embassy-time = { version = "0.1.2", path = "../../embassy-time", features = ["defmt", "defmt-timestamp-uptime", "tick-hz-32_768"] } | 10 | embassy-time = { version = "0.1.2", path = "../../embassy-time", features = ["defmt", "defmt-timestamp-uptime", "tick-hz-32_768"] } |
| 11 | embassy-stm32 = { version = "0.1.0", path = "../../embassy-stm32", features = ["nightly", "defmt", "stm32wb55rg", "time-driver-any", "memory-x", "exti"] } | 11 | embassy-stm32 = { version = "0.1.0", path = "../../embassy-stm32", features = ["nightly", "defmt", "stm32wb55rg", "time-driver-any", "memory-x", "exti"] } |
| 12 | embassy-stm32-wpan = { version = "0.1.0", path = "../../embassy-stm32-wpan", features = ["defmt", "stm32wb55rg"] } | 12 | embassy-stm32-wpan = { version = "0.1.0", path = "../../embassy-stm32-wpan", features = ["defmt", "stm32wb55rg"] } |
| 13 | embassy-net = { version = "0.1.0", path = "../../embassy-net", features = ["defmt", "udp", "medium-ieee802154", "nightly"], optional=true } | ||
| 13 | 14 | ||
| 14 | defmt = "0.3" | 15 | defmt = "0.3" |
| 15 | defmt-rtt = "0.4" | 16 | defmt-rtt = "0.4" |
| @@ -24,7 +25,7 @@ heapless = { version = "0.7.5", default-features = false } | |||
| 24 | 25 | ||
| 25 | [features] | 26 | [features] |
| 26 | default = ["ble", "mac"] | 27 | default = ["ble", "mac"] |
| 27 | mac = ["embassy-stm32-wpan/mac"] | 28 | mac = ["embassy-stm32-wpan/mac", "dep:embassy-net"] |
| 28 | ble = ["embassy-stm32-wpan/ble"] | 29 | ble = ["embassy-stm32-wpan/ble"] |
| 29 | 30 | ||
| 30 | [[bin]] | 31 | [[bin]] |
