We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad6ab5a commit 5462848Copy full SHA for 5462848
micropython/lora/lora-sx127x/lora/sx127x.py
@@ -519,6 +519,9 @@ def configure(self, lora_cfg):
519
520
self._reg_update(_REG_MODEM_CONFIG3, update_mask, modem_config3)
521
522
+ if "syncword" in lora_cfg:
523
+ self._reg_write(_REG_SYNC_WORD, lora_cfg["syncword"])
524
+
525
def _reg_write(self, reg, value):
526
self._cs(0)
527
if isinstance(value, int):
micropython/lora/lora-sx127x/manifest.py
@@ -1,3 +1,3 @@
1
-metadata(version="0.1.0")
+metadata(version="0.1.1")
2
require("lora")
3
package("lora")
0 commit comments