diff options
| author | Caleb Jamison <[email protected]> | 2023-02-17 07:43:19 -0500 |
|---|---|---|
| committer | Caleb Jamison <[email protected]> | 2023-02-17 07:43:19 -0500 |
| commit | 7783e0ebb1a3870f3b180c87c1acd2807439f976 (patch) | |
| tree | 9cf337ee927a7a9b7142e7461181b77437b40d00 | |
| parent | e3f8020c3bdf726dfa451b5b190f27191507a18f (diff) | |
Change timing window to match values found experimentally.
| -rw-r--r-- | embassy-lora/src/sx126x/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/embassy-lora/src/sx126x/mod.rs b/embassy-lora/src/sx126x/mod.rs index a9aeadfcb..8559574cb 100644 --- a/embassy-lora/src/sx126x/mod.rs +++ b/embassy-lora/src/sx126x/mod.rs | |||
| @@ -55,10 +55,10 @@ where | |||
| 55 | BUS: Error + Format + 'static, | 55 | BUS: Error + Format + 'static, |
| 56 | { | 56 | { |
| 57 | fn get_rx_window_offset_ms(&self) -> i32 { | 57 | fn get_rx_window_offset_ms(&self) -> i32 { |
| 58 | -3 | 58 | -50 |
| 59 | } | 59 | } |
| 60 | fn get_rx_window_duration_ms(&self) -> u32 { | 60 | fn get_rx_window_duration_ms(&self) -> u32 { |
| 61 | 1003 | 61 | 1050 |
| 62 | } | 62 | } |
| 63 | } | 63 | } |
| 64 | 64 | ||
