aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--embassy-lora/src/stm32wl/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/embassy-lora/src/stm32wl/mod.rs b/embassy-lora/src/stm32wl/mod.rs
index 6ed63bf7b..3d52c1cc7 100644
--- a/embassy-lora/src/stm32wl/mod.rs
+++ b/embassy-lora/src/stm32wl/mod.rs
@@ -260,10 +260,10 @@ impl From<embassy_stm32::spi::Error> for RadioError {
260 260
261impl<'d, RS> Timings for SubGhzRadio<'d, RS> { 261impl<'d, RS> Timings for SubGhzRadio<'d, RS> {
262 fn get_rx_window_offset_ms(&self) -> i32 { 262 fn get_rx_window_offset_ms(&self) -> i32 {
263 -500 263 -3
264 } 264 }
265 fn get_rx_window_duration_ms(&self) -> u32 { 265 fn get_rx_window_duration_ms(&self) -> u32 {
266 3000 266 1003
267 } 267 }
268} 268}
269 269