From 7783e0ebb1a3870f3b180c87c1acd2807439f976 Mon Sep 17 00:00:00 2001 From: Caleb Jamison Date: Fri, 17 Feb 2023 07:43:19 -0500 Subject: [PATCH] Change timing window to match values found experimentally. --- embassy-lora/src/sx126x/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/embassy-lora/src/sx126x/mod.rs b/embassy-lora/src/sx126x/mod.rs index a9aeadfc..8559574c 100644 --- a/embassy-lora/src/sx126x/mod.rs +++ b/embassy-lora/src/sx126x/mod.rs @@ -55,10 +55,10 @@ where BUS: Error + Format + 'static, { fn get_rx_window_offset_ms(&self) -> i32 { - -3 + -50 } fn get_rx_window_duration_ms(&self) -> u32 { - 1003 + 1050 } }