From 9bb8586beb61c38d206f0ab6737dd3a4fa1f58bb Mon Sep 17 00:00:00 2001 From: mmrein <55082189+mmrein@users.noreply.github.com> Date: Mon, 16 Sep 2019 19:54:49 +0200 Subject: [PATCH] Updated note for setSyncBits example --- examples/SX126x/SX126x_FSK_Modem/SX126x_FSK_Modem.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/SX126x/SX126x_FSK_Modem/SX126x_FSK_Modem.ino b/examples/SX126x/SX126x_FSK_Modem/SX126x_FSK_Modem.ino index 5a924b6d..18050269 100644 --- a/examples/SX126x/SX126x_FSK_Modem/SX126x_FSK_Modem.ino +++ b/examples/SX126x/SX126x_FSK_Modem/SX126x_FSK_Modem.ino @@ -75,7 +75,7 @@ void setup() { } // FSK modem on SX126x can handle the sync word setting in bits, not just - // whole bytes. The value used is LSB first. + // whole bytes. The value used is left-justified. // This makes same result as fsk.setSyncWord(syncWord, 8): state = fsk.setSyncBits(syncWord, 64); // This will use 0x012 as sync word (12 bits only):