diff options
| author | ceekdee <[email protected]> | 2023-04-25 13:51:19 -0500 |
|---|---|---|
| committer | ceekdee <[email protected]> | 2023-04-25 13:51:19 -0500 |
| commit | f729d2d060043889eacb04dc924757a536eb247f (patch) | |
| tree | 10d50fdcb5d0cb6244f9f6cd8c91b859a5adacaa /embassy-lora | |
| parent | 73f25093c7793ad2e8bd6fceeca46d9b5b1031ad (diff) | |
Deprecate original LoRa drivers. Update rust-lorawan releases.
Diffstat (limited to 'embassy-lora')
| -rw-r--r-- | embassy-lora/Cargo.toml | 4 | ||||
| -rw-r--r-- | embassy-lora/src/stm32wl/mod.rs | 1 |
2 files changed, 3 insertions, 2 deletions
diff --git a/embassy-lora/Cargo.toml b/embassy-lora/Cargo.toml index 552788898..692a82040 100644 --- a/embassy-lora/Cargo.toml +++ b/embassy-lora/Cargo.toml | |||
| @@ -40,5 +40,5 @@ embedded-hal = { version = "0.2", features = ["unproven"] } | |||
| 40 | bit_field = { version = "0.10" } | 40 | bit_field = { version = "0.10" } |
| 41 | 41 | ||
| 42 | lora-phy = { version = "1", optional = true } | 42 | lora-phy = { version = "1", optional = true } |
| 43 | lorawan-device = { version = "0.9.0", path = "../../rust-lorawan/device", default-features = false, features = ["async"] } | 43 | lorawan-device = { version = "0.10.0", default-features = false, features = ["async"] } |
| 44 | lorawan = { version = "0.7.2", path = "../../rust-lorawan/encoding", default-features = false } | 44 | lorawan = { version = "0.7.3", default-features = false } |
diff --git a/embassy-lora/src/stm32wl/mod.rs b/embassy-lora/src/stm32wl/mod.rs index d76e8c43b..dae9a195c 100644 --- a/embassy-lora/src/stm32wl/mod.rs +++ b/embassy-lora/src/stm32wl/mod.rs | |||
| @@ -1,4 +1,5 @@ | |||
| 1 | //! A radio driver integration for the radio found on STM32WL family devices. | 1 | //! A radio driver integration for the radio found on STM32WL family devices. |
| 2 | #![allow(deprecated)] | ||
| 2 | use core::future::poll_fn; | 3 | use core::future::poll_fn; |
| 3 | use core::task::Poll; | 4 | use core::task::Poll; |
| 4 | 5 | ||
