From 7034905e556f3ebb4e6eb04169405465744a8671 Mon Sep 17 00:00:00 2001 From: Sjef Verhoeven PE5PVB Date: Thu, 6 Jul 2023 23:30:01 +0200 Subject: [PATCH] Added extra spaces after RT message --- src/TEF6686.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TEF6686.cpp b/src/TEF6686.cpp index e73d67c..4ec24c8 100644 --- a/src/TEF6686.cpp +++ b/src/TEF6686.cpp @@ -455,7 +455,7 @@ void TEF6686::readRDS(bool showrdserrors) RDScharConverter(rt_buffer, RTtext, sizeof(RTtext) / sizeof(wchar_t), true); // Convert 8 bit ASCII to 16 bit ASCII rds.stationText = convertToUTF8(RTtext); // Convert RDS characterset to ASCII rds.stationText = extractUTF8Substring(rds.stationText, 0, 64, true); // Make sure RT does not exceed 64 characters - rds.stationText += " "; // Add extra space + rds.stationText += " "; // Add extra spaces for (int i = 0; i < 64; i++) rt_buffer2[i] = rt_buffer[i]; }