diff --git a/README.md b/README.md index 8b6f3bb..6e97daa 100644 --- a/README.md +++ b/README.md @@ -47,6 +47,7 @@ __(This iGate Firmware works with all LoRa Tracker Firmwares (specially this = 125000)) { // CrossFreq Digi + // Serial.println("CrossFreqDigi mode 2"); + // return buildPacket(path, packet, thirdParty, true); } else { return ""; @@ -103,7 +105,9 @@ namespace DIGI_Utils { } return ""; } else if (path.indexOf("WIDE1-1") == -1 && path.indexOf("WIDE2-") == -1 && (abs(Config.loramodule.txFreq - Config.loramodule.rxFreq) >= 125000)) { // CrossFreq Digi + // Serial.println("CrossFreqDigi mode 3"); + // return buildPacket(path, packet, thirdParty, true); } else { return ""; @@ -111,16 +115,7 @@ namespace DIGI_Utils { } else { return ""; } - - // sin path "," y !thirdParty - } else if (temp.indexOf(",") == -1 && !thirdParty && (Config.digi.mode == 2 || backUpDigiMode || Config.digi.mode == 3) && (abs(Config.loramodule.txFreq - Config.loramodule.rxFreq) >= 125000)) { - Serial.println("CrossFreqDigi, sin path , no thirdParty"); - return buildPacket("", packet, thirdParty, true); - - - // sin path "," y thirdParty - } else if (temp.indexOf(",") == -1 && thirdParty && (Config.digi.mode == 2 || backUpDigiMode || Config.digi.mode == 3) && (abs(Config.loramodule.txFreq - Config.loramodule.rxFreq) >= 125000)) { - Serial.println("sin path, thirdparty , 125k"); + } else if (temp.indexOf(",") == -1 && (Config.digi.mode == 2 || backUpDigiMode || Config.digi.mode == 3) && (abs(Config.loramodule.txFreq - Config.loramodule.rxFreq) >= 125000)) { return buildPacket("", packet, thirdParty, true); } else { return "";