From ad0f2c17dabfd87c66791e7ed98c1378433b2050 Mon Sep 17 00:00:00 2001 From: Tony Corbett G0WFV Date: Sun, 19 Jun 2016 17:15:42 +0100 Subject: [PATCH] Fix HD44780 4th line not cleared when not in Idle Removed one too many ::lcdClear() statements! --- HD44780.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/HD44780.cpp b/HD44780.cpp index 30c865a..3b787fc 100644 --- a/HD44780.cpp +++ b/HD44780.cpp @@ -481,6 +481,7 @@ void CHD44780::writeDMRInt(unsigned int slotNo, const std::string& src, bool gro if (!m_dmr) { m_clockDisplayTimer.stop(); // Stop the clock display + ::lcdClear(m_fd); #ifdef ADAFRUIT_DISPLAY adafruitLCDColour(AC_GREEN);