aboutsummaryrefslogtreecommitdiff
path: root/embassy-lora/src/lib.rs
diff options
context:
space:
mode:
authorceekdee <[email protected]>2022-10-10 12:35:42 -0500
committerceekdee <[email protected]>2022-10-10 12:35:42 -0500
commit327d3cf0df7a1b116ea7ec44d36a569e6ba6ca16 (patch)
tree67c69a2d511ba9dee2def2f7858e859d8150559b /embassy-lora/src/lib.rs
parent79ba20d315f456ac525daf4c3d5dd0d2ce92ad2b (diff)
Change rak4631 feature to sx126x, removing use in board-specific processing; simplify the P2P examples; correct RSSI computation.
Diffstat (limited to 'embassy-lora/src/lib.rs')
-rw-r--r--embassy-lora/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/embassy-lora/src/lib.rs b/embassy-lora/src/lib.rs
index 342f66b2a..3e4748430 100644
--- a/embassy-lora/src/lib.rs
+++ b/embassy-lora/src/lib.rs
@@ -7,7 +7,7 @@ pub(crate) mod fmt;
7 7
8#[cfg(feature = "stm32wl")] 8#[cfg(feature = "stm32wl")]
9pub mod stm32wl; 9pub mod stm32wl;
10#[cfg(feature = "rak4631")] 10#[cfg(feature = "sx126x")]
11pub mod sx126x; 11pub mod sx126x;
12#[cfg(feature = "sx127x")] 12#[cfg(feature = "sx127x")]
13pub mod sx127x; 13pub mod sx127x;