From 189a88dcdc10074f5679e2bd928a8423af0d30b8 Mon Sep 17 00:00:00 2001 From: Sjef Verhoeven PE5PVB Date: Mon, 10 Feb 2025 22:14:31 +0100 Subject: [PATCH] Faster CT. Only do check when RDS errors is set to none --- src/TEF6686.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TEF6686.cpp b/src/TEF6686.cpp index b0a42cc..aaa4c2a 100644 --- a/src/TEF6686.cpp +++ b/src/TEF6686.cpp @@ -1385,7 +1385,7 @@ void TEF6686::readRDS(byte showrdserrors) { lastrdstime = rdstime; lasttimeoffset = timeoffset; } - if (rdstime == lastrdstime + 60 && timeoffset == lasttimeoffset) { + if ((rdstime == lastrdstime + 60 && timeoffset == lasttimeoffset) || showrdserrors != 0) { rds.hasCT = true; rds.time = rdstime; rds.offset = timeoffset;