Add external LoRa physical layer functionality.

This commit is contained in:
ceekdee
2023-04-21 01:20:46 -05:00
parent fb27594b2e
commit 02c86bca52
15 changed files with 884 additions and 103 deletions

View File

@ -22,6 +22,7 @@ sx127x = []
stm32wl = ["dep:embassy-stm32"]
time = []
defmt = ["dep:defmt", "lorawan/defmt", "lorawan-device/defmt"]
external-lora-phy = ["dep:lora-phy"]
[dependencies]
@ -35,8 +36,9 @@ embedded-hal-1 = { package = "embedded-hal", version = "=1.0.0-alpha.10" }
embedded-hal-async = { version = "=0.2.0-alpha.1" }
embassy-hal-common = { version = "0.1.0", path = "../embassy-hal-common", default-features = false }
futures = { version = "0.3.17", default-features = false, features = [ "async-await" ] }
embedded-hal = { version = "0.2", features = ["unproven"] }
embedded-hal = { version = "0.2.6" }
bit_field = { version = "0.10" }
lorawan-device = { version = "0.9.0", default-features = false, features = ["async"] }
lorawan = { version = "0.7.2", default-features = false }
lora-phy = { version = "1", path = "../../lora-phy", optional = true }
lorawan-device = { version = "0.9.0", path = "../../rust-lorawan/device", default-features = false, features = ["async"] }
lorawan = { version = "0.7.2", path = "../../rust-lorawan/encoding", default-features = false }