aboutsummaryrefslogtreecommitdiff
path: root/embassy-lora
diff options
context:
space:
mode:
authorceekdee <[email protected]>2023-04-25 13:51:19 -0500
committerceekdee <[email protected]>2023-04-25 13:51:19 -0500
commitf729d2d060043889eacb04dc924757a536eb247f (patch)
tree10d50fdcb5d0cb6244f9f6cd8c91b859a5adacaa /embassy-lora
parent73f25093c7793ad2e8bd6fceeca46d9b5b1031ad (diff)
Deprecate original LoRa drivers. Update rust-lorawan releases.
Diffstat (limited to 'embassy-lora')
-rw-r--r--embassy-lora/Cargo.toml4
-rw-r--r--embassy-lora/src/stm32wl/mod.rs1
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"] }
40bit_field = { version = "0.10" } 40bit_field = { version = "0.10" }
41 41
42lora-phy = { version = "1", optional = true } 42lora-phy = { version = "1", optional = true }
43lorawan-device = { version = "0.9.0", path = "../../rust-lorawan/device", default-features = false, features = ["async"] } 43lorawan-device = { version = "0.10.0", default-features = false, features = ["async"] }
44lorawan = { version = "0.7.2", path = "../../rust-lorawan/encoding", default-features = false } 44lorawan = { 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)]
2use core::future::poll_fn; 3use core::future::poll_fn;
3use core::task::Poll; 4use core::task::Poll;
4 5