aboutsummaryrefslogtreecommitdiff
path: root/embassy-lora
diff options
context:
space:
mode:
authorceekdee <[email protected]>2023-04-23 18:32:34 -0500
committerceekdee <[email protected]>2023-04-23 18:32:34 -0500
commit73f25093c7793ad2e8bd6fceeca46d9b5b1031ad (patch)
tree9374f5a637e1337ceb40a51426f24f3fe68249ef /embassy-lora
parenta3f727e2e1dd81fe00f19d74f7e0e590250a6970 (diff)
Add lora-phy examples.
Diffstat (limited to 'embassy-lora')
-rw-r--r--embassy-lora/src/lib.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/embassy-lora/src/lib.rs b/embassy-lora/src/lib.rs
index d8bc3cd98..c01d3f71a 100644
--- a/embassy-lora/src/lib.rs
+++ b/embassy-lora/src/lib.rs
@@ -10,10 +10,13 @@ pub(crate) mod fmt;
10pub mod iv; 10pub mod iv;
11 11
12#[cfg(feature = "stm32wl")] 12#[cfg(feature = "stm32wl")]
13#[deprecated(note = "use the external LoRa physical layer crate - https://crates.io/crates/lora-phy")]
13pub mod stm32wl; 14pub mod stm32wl;
14#[cfg(feature = "sx126x")] 15#[cfg(feature = "sx126x")]
16#[deprecated(note = "use the external LoRa physical layer crate - https://crates.io/crates/lora-phy")]
15pub mod sx126x; 17pub mod sx126x;
16#[cfg(feature = "sx127x")] 18#[cfg(feature = "sx127x")]
19#[deprecated(note = "use the external LoRa physical layer crate - https://crates.io/crates/lora-phy")]
17pub mod sx127x; 20pub mod sx127x;
18 21
19#[cfg(feature = "time")] 22#[cfg(feature = "time")]