From e84d27fc8cdf6330c19c8803304ec798ab900bc0 Mon Sep 17 00:00:00 2001 From: Jonathan Naylor Date: Mon, 9 May 2016 09:31:59 +0100 Subject: [PATCH] Blank the D-Star reflector when not in use. --- TFTSerial.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/TFTSerial.cpp b/TFTSerial.cpp index 4815ec2..4c58b39 100644 --- a/TFTSerial.cpp +++ b/TFTSerial.cpp @@ -174,6 +174,9 @@ void CTFTSerial::writeDStar(const char* my1, const char* my2, const char* your, ::sprintf(text, "via %.8s", reflector); gotoPosPixel(5U, 110U); displayText(text); + } else { + gotoPosPixel(5U, 110U); + displayText(" "); } m_mode = MODE_DSTAR;