From eba22aa41ad2045e874856a8e9eac52fbb3b4b9b Mon Sep 17 00:00:00 2001 From: Sjef Verhoeven PE5PVB Date: Sat, 3 Aug 2024 15:38:40 +0200 Subject: [PATCH] Bugfix: Don't search AF on stations without AF --- TEF6686_ESP32.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TEF6686_ESP32.ino b/TEF6686_ESP32.ino index a81a06a..e74a2a6 100644 --- a/TEF6686_ESP32.ino +++ b/TEF6686_ESP32.ino @@ -892,7 +892,7 @@ void loop() { if (af != 0 && dropout && millis() >= aftimer + 1000) { aftimer = millis(); if (radio.af_counter == 0) { - if (findMemoryAF && radio.rds.correctPI != 0) { + if (findMemoryAF && radio.rds.correctPI != 0 && tunemode == TUNE_MEM) { radio.setMute(); tft.drawBitmap(92, 4, Speaker, 26, 22, PrimaryColor); SQ = true;