File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -187,8 +187,8 @@ typedef enum
187187#define SX127X_FIFO_RX_BASE_ADDR_MAX 0b00000000 // 7 0 allocate the entire FIFO buffer for RX only
188188
189189// SX127X_REG_SYNC_WORD
190- #define SX127X_SYNC_WORD 0xC8 // 200 0 default ExpressLRS sync word - 200Hz
191- // #define SX127X_SYNC_WORD 0x12 // 18 0 default LoRa sync word
190+ // #define SX127X_SYNC_WORD 0xC8 // 200 0 default ExpressLRS sync word - 200Hz
191+ #define SX127X_SYNC_WORD 0x12 // 18 0 default LoRa sync word
192192#define SX127X_SYNC_WORD_LORAWAN 0x34 // 52 0 sync word reserved for LoRaWAN networks
193193
194194#define IRQpin 26
Original file line number Diff line number Diff line change @@ -702,7 +702,7 @@ void setup()
702702
703703 Radio.currFreq = GetInitialFreq ();
704704#if !defined(Regulatory_Domain_ISM_2400)
705- Radio.currSyncWord = UID[3 ];
705+ // Radio.currSyncWord = UID[3];
706706#endif
707707 bool init_success = Radio.Begin ();
708708 while (!init_success)
Original file line number Diff line number Diff line change @@ -619,7 +619,7 @@ void setup()
619619 POWERMGNT.init ();
620620 Radio.currFreq = GetInitialFreq (); // set frequency first or an error will occur!!!
621621 #if !(defined(TARGET_TX_ESP32_E28_SX1280_V1) || defined(TARGET_TX_ESP32_SX1280_V1) || defined(TARGET_RX_ESP8266_SX1280_V1) || defined(Regulatory_Domain_ISM_2400))
622- Radio.currSyncWord = UID[3 ];
622+ // Radio.currSyncWord = UID[3];
623623 #endif
624624 bool init_success = Radio.Begin ();
625625 while (!init_success)
You can’t perform that action at this time.
0 commit comments