When in screenmute quality data was not polled, so AF could not work correct.

This commit is contained in:
Sjef Verhoeven PE5PVB
2023-10-08 22:09:08 +02:00
parent 59a5926695
commit ca6a9957d2
+2 -2
View File
@@ -795,7 +795,7 @@ void loop() {
if (millis() >= lowsignaltimer + 300) {
lowsignaltimer = millis();
if (!screenmute || (screenmute && (XDRGTKTCP || XDRGTKUSB))) {
if (af || (!screenmute || (screenmute && (XDRGTKTCP || XDRGTKUSB)))) {
if (band < BAND_GAP) {
radio.getStatus(SStatus, USN, WAM, OStatus, BW, MStatus, CN);
} else {
@@ -810,7 +810,7 @@ void loop() {
}
} else {
if (!screenmute || (screenmute && (XDRGTKTCP || XDRGTKUSB))) {
if (af || (!screenmute || (screenmute && (XDRGTKTCP || XDRGTKUSB)))) {
if (band < BAND_GAP) {
radio.getStatus(SStatus, USN, WAM, OStatus, BW, MStatus, CN);
} else {