Rx and Tx Freq selection fix

This commit is contained in:
richonguzman 2025-10-15 14:18:43 -03:00
parent bec4f4f473
commit 83ec2265c6
9 changed files with 36 additions and 30 deletions

View file

@ -284,7 +284,7 @@ namespace Utils {
Serial.println("Tx Freq less than 125kHz from Rx Freq ---> NOT VALID");
displayShow("Tx Freq is less than ", "125kHz from Rx Freq", "device will autofix", "and then reboot", 1000);
Config.loramodule.txFreq = Config.loramodule.rxFreq; // Inform about that but then change the TX QRG to RX QRG and reset the device
Config.beacon.beaconOnRxFreq = false;
Config.beacon.beaconFreq = 1; // return to LoRa Tx Beacon Freq
Config.writeFile();
ESP.restart();
}