diff options
| author | ceekdee <[email protected]> | 2023-04-26 10:51:02 -0500 |
|---|---|---|
| committer | ceekdee <[email protected]> | 2023-04-26 10:51:02 -0500 |
| commit | 52decfb16c4e7eb6de23d3958d6be4830488fbec (patch) | |
| tree | 30b1cfcac61ebc8c6726cc08429d7e43b1546375 /examples/stm32l0/Cargo.toml | |
| parent | 91047c61b9f2946805befa5d229f314b35ded43c (diff) | |
Add nightly feature specification for lora-phy.
Diffstat (limited to 'examples/stm32l0/Cargo.toml')
| -rw-r--r-- | examples/stm32l0/Cargo.toml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/stm32l0/Cargo.toml b/examples/stm32l0/Cargo.toml index c168dee24..4e1830b29 100644 --- a/examples/stm32l0/Cargo.toml +++ b/examples/stm32l0/Cargo.toml | |||
| @@ -7,7 +7,7 @@ license = "MIT OR Apache-2.0" | |||
| 7 | [features] | 7 | [features] |
| 8 | default = ["nightly"] | 8 | default = ["nightly"] |
| 9 | nightly = ["embassy-stm32/nightly", "embassy-time/nightly", "embassy-time/unstable-traits", | 9 | nightly = ["embassy-stm32/nightly", "embassy-time/nightly", "embassy-time/unstable-traits", |
| 10 | "embassy-lora", "lorawan-device", "lorawan", "embedded-io/async"] | 10 | "embassy-lora", "lora-phy", "lorawan-device", "lorawan", "embedded-io/async"] |
| 11 | 11 | ||
| 12 | [dependencies] | 12 | [dependencies] |
| 13 | embassy-sync = { version = "0.2.0", path = "../../embassy-sync", features = ["defmt"] } | 13 | embassy-sync = { version = "0.2.0", path = "../../embassy-sync", features = ["defmt"] } |
| @@ -15,7 +15,7 @@ embassy-executor = { version = "0.1.0", path = "../../embassy-executor", feature | |||
| 15 | embassy-time = { version = "0.1.0", path = "../../embassy-time", features = ["nightly", "unstable-traits", "defmt", "defmt-timestamp-uptime", "tick-hz-32_768"] } | 15 | embassy-time = { version = "0.1.0", path = "../../embassy-time", features = ["nightly", "unstable-traits", "defmt", "defmt-timestamp-uptime", "tick-hz-32_768"] } |
| 16 | embassy-stm32 = { version = "0.1.0", path = "../../embassy-stm32", features = ["defmt", "stm32l072cz", "time-driver-any", "exti", "unstable-traits", "memory-x"] } | 16 | embassy-stm32 = { version = "0.1.0", path = "../../embassy-stm32", features = ["defmt", "stm32l072cz", "time-driver-any", "exti", "unstable-traits", "memory-x"] } |
| 17 | embassy-lora = { version = "0.1.0", path = "../../embassy-lora", features = ["sx127x", "time", "defmt", "external-lora-phy"], optional = true } | 17 | embassy-lora = { version = "0.1.0", path = "../../embassy-lora", features = ["sx127x", "time", "defmt", "external-lora-phy"], optional = true } |
| 18 | lora-phy = { version = "1" } | 18 | lora-phy = { version = "1", optional = true } |
| 19 | lorawan-device = { version = "0.10.0", default-features = false, features = ["async", "external-lora-phy"], optional = true } | 19 | lorawan-device = { version = "0.10.0", default-features = false, features = ["async", "external-lora-phy"], optional = true } |
| 20 | lorawan = { version = "0.7.3", default-features = false, features = ["default-crypto"], optional = true } | 20 | lorawan = { version = "0.7.3", default-features = false, features = ["default-crypto"], optional = true } |
| 21 | 21 | ||
