1
0
mirror of https://github.com/sandeepmistry/arduino-LoRa.git synced 2025-09-04 14:42:10 +03:00

Add function to invert IQ signal register (#179)

Add function to change register (REG_INVERTIQ) to support communication node and gateway

The register does not exist in datasheet but use on but used in Semtech code.
Reference : https://github.com/intel-iot-devkit/upm/blob/master/src/sx1276/sx1276.cxx

* Add LoRa Simple Gateway/Node Exemple

Example how to use InvertIQ function to create a simple Gateway/Node logic.
This commit is contained in:
Luiz
2018-08-19 10:53:52 -03:00
committed by Sandeep Mistry
parent 403738660b
commit 07bfead143
6 changed files with 255 additions and 0 deletions

10
API.md
View File

@@ -329,6 +329,16 @@ LoRa.enableCrc();
LoRa.disableCrc();
```
### Invert IQ Signals
Enable or disable Invert the LoRa I and Q signals, by default a invertIQ is not used.
```arduino
LoRa.enableInvertIQ();
LoRa.disableInvertIQ();
```
## Other functions
### Random