aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChuck Davis <[email protected]>2023-07-27 13:55:37 +0000
committerGitHub <[email protected]>2023-07-27 13:55:37 +0000
commit281554016796efdeec9c1690c92f4fbd8acc9c7e (patch)
treed0a747e4fc47fc8614098c5dd38efa87e6721f5b
parent3ee3f0e21c524e062ab23a006d2e180c281e58b1 (diff)
parent8f1ea8593809ed8d293c8f73e00b8a58c0e5c580 (diff)
Merge pull request #1694 from ceekdee/main
Use lora-phy v1.2.1; modify embassy-lora dependencies
-rw-r--r--embassy-lora/Cargo.toml13
-rw-r--r--examples/nrf52840/Cargo.toml3
-rw-r--r--examples/rp/Cargo.toml4
-rw-r--r--examples/stm32l0/Cargo.toml3
-rw-r--r--examples/stm32wl/Cargo.toml3
5 files changed, 3 insertions, 23 deletions
diff --git a/embassy-lora/Cargo.toml b/embassy-lora/Cargo.toml
index e4524af5b..a77ed003e 100644
--- a/embassy-lora/Cargo.toml
+++ b/embassy-lora/Cargo.toml
@@ -12,7 +12,7 @@ target = "thumbv7em-none-eabi"
12 12
13[features] 13[features]
14stm32wl = ["dep:embassy-stm32"] 14stm32wl = ["dep:embassy-stm32"]
15time = [] 15time = ["embassy-time", "lorawan-device"]
16defmt = ["dep:defmt", "lorawan-device/defmt"] 16defmt = ["dep:defmt", "lorawan-device/defmt"]
17 17
18[dependencies] 18[dependencies]
@@ -20,18 +20,11 @@ defmt = ["dep:defmt", "lorawan-device/defmt"]
20defmt = { version = "0.3", optional = true } 20defmt = { version = "0.3", optional = true }
21log = { version = "0.4.14", optional = true } 21log = { version = "0.4.14", optional = true }
22 22
23embassy-time = { version = "0.1.2", path = "../embassy-time" } 23embassy-time = { version = "0.1.2", path = "../embassy-time", optional = true }
24embassy-sync = { version = "0.2.0", path = "../embassy-sync" } 24embassy-sync = { version = "0.2.0", path = "../embassy-sync" }
25embassy-stm32 = { version = "0.1.0", path = "../embassy-stm32", default-features = false, optional = true } 25embassy-stm32 = { version = "0.1.0", path = "../embassy-stm32", default-features = false, optional = true }
26embedded-hal-1 = { package = "embedded-hal", version = "=1.0.0-alpha.11" }
27embedded-hal-async = { version = "=0.2.0-alpha.2" } 26embedded-hal-async = { version = "=0.2.0-alpha.2" }
28embassy-hal-common = { version = "0.1.0", path = "../embassy-hal-common", default-features = false }
29futures = { version = "0.3.17", default-features = false, features = [ "async-await" ] }
30embedded-hal = { version = "0.2", features = ["unproven"] } 27embedded-hal = { version = "0.2", features = ["unproven"] }
31bit_field = { version = "0.10" }
32 28
33lora-phy = { version = "1" } 29lora-phy = { version = "1" }
34lorawan-device = { version = "0.10.0", default-features = false, features = ["async"] } 30lorawan-device = { version = "0.10.0", default-features = false, features = ["async"], optional = true }
35
36[patch.crates-io]
37lora-phy = { git = "https://github.com/embassy-rs/lora-phy", rev = "ad289428fd44b02788e2fa2116445cc8f640a265" }
diff --git a/examples/nrf52840/Cargo.toml b/examples/nrf52840/Cargo.toml
index 5d6bf54e8..780aaeac2 100644
--- a/examples/nrf52840/Cargo.toml
+++ b/examples/nrf52840/Cargo.toml
@@ -57,8 +57,5 @@ embedded-hal-async = { version = "0.2.0-alpha.2", optional = true }
57num-integer = { version = "0.1.45", default-features = false } 57num-integer = { version = "0.1.45", default-features = false }
58microfft = "0.5.0" 58microfft = "0.5.0"
59 59
60[patch.crates-io]
61lora-phy = { git = "https://github.com/embassy-rs/lora-phy", rev = "ad289428fd44b02788e2fa2116445cc8f640a265" }
62
63[profile.release] 60[profile.release]
64debug = 2 61debug = 2
diff --git a/examples/rp/Cargo.toml b/examples/rp/Cargo.toml
index f2fe5da4e..8c61dc5e1 100644
--- a/examples/rp/Cargo.toml
+++ b/examples/rp/Cargo.toml
@@ -54,7 +54,3 @@ rand = { version = "0.8.5", default-features = false }
54 54
55[profile.release] 55[profile.release]
56debug = 2 56debug = 2
57
58[patch.crates-io]
59lora-phy = { git = "https://github.com/embassy-rs/lora-phy", rev = "ad289428fd44b02788e2fa2116445cc8f640a265" }
60
diff --git a/examples/stm32l0/Cargo.toml b/examples/stm32l0/Cargo.toml
index f2ebae775..c325751c6 100644
--- a/examples/stm32l0/Cargo.toml
+++ b/examples/stm32l0/Cargo.toml
@@ -34,8 +34,5 @@ heapless = { version = "0.7.5", default-features = false }
34embedded-hal = "0.2.6" 34embedded-hal = "0.2.6"
35static_cell = "1.1" 35static_cell = "1.1"
36 36
37[patch.crates-io]
38lora-phy = { git = "https://github.com/embassy-rs/lora-phy", rev = "ad289428fd44b02788e2fa2116445cc8f640a265" }
39
40[profile.release] 37[profile.release]
41debug = 2 38debug = 2
diff --git a/examples/stm32wl/Cargo.toml b/examples/stm32wl/Cargo.toml
index 3e99b1018..48b69c8d0 100644
--- a/examples/stm32wl/Cargo.toml
+++ b/examples/stm32wl/Cargo.toml
@@ -28,8 +28,5 @@ futures = { version = "0.3.17", default-features = false, features = ["async-awa
28heapless = { version = "0.7.5", default-features = false } 28heapless = { version = "0.7.5", default-features = false }
29chrono = { version = "^0.4", default-features = false } 29chrono = { version = "^0.4", default-features = false }
30 30
31[patch.crates-io]
32lora-phy = { git = "https://github.com/embassy-rs/lora-phy", rev = "ad289428fd44b02788e2fa2116445cc8f640a265" }
33
34[profile.release] 31[profile.release]
35debug = 2 32debug = 2