From 2f274d374697067fc8f546949ff8e4b497e5330c Mon Sep 17 00:00:00 2001 From: Jason Kraemer <91805010+KE7FNS@users.noreply.github.com> Date: Tue, 12 Oct 2021 19:48:27 -0700 Subject: [PATCH] Update HD44780.cpp POCSAG string was 6 characters, it HAS to be 5 or else it wraps to another line. --- HD44780.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HD44780.cpp b/HD44780.cpp index a43e0d0..da2d577 100644 --- a/HD44780.cpp +++ b/HD44780.cpp @@ -1053,7 +1053,7 @@ void CHD44780::clearNXDNInt() void CHD44780::writePOCSAGInt(uint32_t ric, const std::string& message) { ::lcdPosition(m_fd, m_cols - 5, m_rows - 1); - ::lcdPuts(m_fd, "POCSAG"); // Shortened "POCSAG TX" to 5 characters because it wraps around onto the next line (or on 16x2 displays the 1st line). + ::lcdPuts(m_fd, "POCSG"); // Shortened "POCSAG TX" to 5 characters because it wraps around onto the next line (or on 16x2 displays the 1st line). } void CHD44780::clearPOCSAGInt()