diff options
| author | Dario Nieuwenhuis <[email protected]> | 2022-08-22 21:46:09 +0200 |
|---|---|---|
| committer | Dario Nieuwenhuis <[email protected]> | 2022-08-22 22:18:13 +0200 |
| commit | 21072bee48ff6ec19b79e0d9527ad8cc34a4e9e0 (patch) | |
| tree | b5b8c0f4b3571989b5fd15152be5639f4334c282 /embassy-lora | |
| parent | 61356181b223e95f289ca3af3a038a699cde2112 (diff) | |
split `embassy-util` into `embassy-futures`, `embassy-sync`.
Diffstat (limited to 'embassy-lora')
| -rw-r--r-- | embassy-lora/Cargo.toml | 2 | ||||
| -rw-r--r-- | embassy-lora/src/stm32wl/mod.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/embassy-lora/Cargo.toml b/embassy-lora/Cargo.toml index c7435ab3e..9d5e7aed2 100644 --- a/embassy-lora/Cargo.toml +++ b/embassy-lora/Cargo.toml | |||
| @@ -25,7 +25,7 @@ defmt = { version = "0.3", optional = true } | |||
| 25 | log = { version = "0.4.14", optional = true } | 25 | log = { version = "0.4.14", optional = true } |
| 26 | 26 | ||
| 27 | embassy-time = { version = "0.1.0", path = "../embassy-time" } | 27 | embassy-time = { version = "0.1.0", path = "../embassy-time" } |
| 28 | embassy-util = { version = "0.1.0", path = "../embassy-util" } | 28 | embassy-sync = { version = "0.1.0", path = "../embassy-sync" } |
| 29 | embassy-stm32 = { version = "0.1.0", path = "../embassy-stm32", default-features = false, optional = true } | 29 | embassy-stm32 = { version = "0.1.0", path = "../embassy-stm32", default-features = false, optional = true } |
| 30 | embedded-hal-1 = { package = "embedded-hal", version = "1.0.0-alpha.8" } | 30 | embedded-hal-1 = { package = "embedded-hal", version = "1.0.0-alpha.8" } |
| 31 | embedded-hal-async = { version = "0.1.0-alpha.1" } | 31 | embedded-hal-async = { version = "0.1.0-alpha.1" } |
diff --git a/embassy-lora/src/stm32wl/mod.rs b/embassy-lora/src/stm32wl/mod.rs index 4a4c5cfb7..374c8532f 100644 --- a/embassy-lora/src/stm32wl/mod.rs +++ b/embassy-lora/src/stm32wl/mod.rs | |||
| @@ -12,7 +12,7 @@ use embassy_stm32::subghz::{ | |||
| 12 | Status, SubGhz, TcxoMode, TcxoTrim, Timeout, TxParams, | 12 | Status, SubGhz, TcxoMode, TcxoTrim, Timeout, TxParams, |
| 13 | }; | 13 | }; |
| 14 | use embassy_stm32::Peripheral; | 14 | use embassy_stm32::Peripheral; |
| 15 | use embassy_util::channel::signal::Signal; | 15 | use embassy_sync::channel::signal::Signal; |
| 16 | use lorawan_device::async_device::radio::{Bandwidth, PhyRxTx, RfConfig, RxQuality, SpreadingFactor, TxConfig}; | 16 | use lorawan_device::async_device::radio::{Bandwidth, PhyRxTx, RfConfig, RxQuality, SpreadingFactor, TxConfig}; |
| 17 | use lorawan_device::async_device::Timings; | 17 | use lorawan_device::async_device::Timings; |
| 18 | 18 | ||
