From 25a5f7443ca259fca93c4f7a059df5e108deff36 Mon Sep 17 00:00:00 2001 From: jgromes Date: Sun, 5 Mar 2023 14:57:20 +0100 Subject: [PATCH] [SX127x] Fixed invalid sync word value in example --- examples/SX127x/SX127x_Settings/SX127x_Settings.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/SX127x/SX127x_Settings/SX127x_Settings.ino b/examples/SX127x/SX127x_Settings/SX127x_Settings.ino index 834a6cc8..007a49fb 100644 --- a/examples/SX127x/SX127x_Settings/SX127x_Settings.ino +++ b/examples/SX127x/SX127x_Settings/SX127x_Settings.ino @@ -68,11 +68,11 @@ void setup() { // bandwidth: 500.0 kHz // spreading factor: 6 // coding rate: 5 - // sync word: 0x14 + // sync word: 0x34 // output power: 2 dBm // preamble length: 20 symbols // amplifier gain: 1 (maximum gain) - state = radio2.begin(915.0, 500.0, 6, 5, 0x14, 2, 20, 1); + state = radio2.begin(915.0, 500.0, 6, 5, 0x34, 2, 20, 1); if (state == RADIOLIB_ERR_NONE) { Serial.println(F("success!")); } else {