GrumpyOldPizza / ArduinoCore-stm32l0

Arduino Core for STM32L0
125 stars 67 forks source link

sync-word-lora #182

Closed hpssjellis closed 3 years ago

hpssjellis commented 3 years ago

Does LoRaRadio have the equivalent of Sync-Word ?


 LoRa.setSyncWord(0xF3);           // ranges from 0-0xFF, default 0x34

I could hack a first byte must be a certain character, but sync-word actually seems like it is set by Symtech.

GrumpyOldPizza commented 3 years ago

There is only ::setPublicNetwork(bool enable).

Which toggles between the 2 official supported sync words.

hpssjellis commented 3 years ago

Thank you.