2021-09-30 07:25:45 +00:00
|
|
|
[package]
|
|
|
|
name = "embassy-lora"
|
|
|
|
version = "0.1.0"
|
2022-06-18 00:15:48 +00:00
|
|
|
edition = "2021"
|
2022-10-07 10:41:56 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
2021-09-30 07:25:45 +00:00
|
|
|
|
2022-04-05 19:05:09 +00:00
|
|
|
[package.metadata.embassy_docs]
|
|
|
|
src_base = "https://github.com/embassy-rs/embassy/blob/embassy-lora-v$VERSION/embassy-lora/src/"
|
2022-06-26 21:55:38 +00:00
|
|
|
src_base_git = "https://github.com/embassy-rs/embassy/blob/$COMMIT/embassy-lora/src/"
|
2022-04-05 19:05:09 +00:00
|
|
|
features = ["time", "defmt"]
|
|
|
|
flavors = [
|
2023-04-09 20:40:09 +00:00
|
|
|
{ name = "sx126x", target = "thumbv7em-none-eabihf", features = ["sx126x"] },
|
|
|
|
{ name = "sx127x", target = "thumbv7em-none-eabihf", features = ["sx127x"] },
|
|
|
|
{ name = "stm32wl", target = "thumbv7em-none-eabihf", features = ["stm32wl", "embassy-stm32?/stm32wl55jc-cm4", "embassy-stm32?/time-driver-any"] },
|
2022-04-05 19:05:09 +00:00
|
|
|
]
|
|
|
|
|
2021-09-30 07:25:45 +00:00
|
|
|
[lib]
|
|
|
|
|
|
|
|
[features]
|
2022-10-10 17:35:42 +00:00
|
|
|
sx126x = []
|
2021-09-30 07:25:45 +00:00
|
|
|
sx127x = []
|
2023-04-07 00:20:59 +00:00
|
|
|
stm32wl = ["dep:embassy-stm32"]
|
2021-09-30 07:25:45 +00:00
|
|
|
time = []
|
2022-06-25 08:06:00 +00:00
|
|
|
defmt = ["dep:defmt", "lorawan/defmt", "lorawan-device/defmt"]
|
2021-09-30 07:25:45 +00:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
2021-11-15 16:08:51 +00:00
|
|
|
defmt = { version = "0.3", optional = true }
|
2021-09-30 07:25:45 +00:00
|
|
|
log = { version = "0.4.14", optional = true }
|
|
|
|
|
2022-08-17 21:40:16 +00:00
|
|
|
embassy-time = { version = "0.1.0", path = "../embassy-time" }
|
2023-04-13 21:03:21 +00:00
|
|
|
embassy-sync = { version = "0.2.0", path = "../embassy-sync" }
|
2021-09-30 07:25:45 +00:00
|
|
|
embassy-stm32 = { version = "0.1.0", path = "../embassy-stm32", default-features = false, optional = true }
|
2023-04-06 20:25:24 +00:00
|
|
|
embedded-hal-1 = { package = "embedded-hal", version = "=1.0.0-alpha.10" }
|
|
|
|
embedded-hal-async = { version = "=0.2.0-alpha.1" }
|
2021-09-30 07:25:45 +00:00
|
|
|
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"] }
|
|
|
|
bit_field = { version = "0.10" }
|
|
|
|
|
2023-04-17 13:35:02 +00:00
|
|
|
lorawan-device = { version = "0.9.0", default-features = false, features = ["async"] }
|
|
|
|
lorawan = { version = "0.7.2", default-features = false }
|