Skip to content

Commit 2f274d3

Browse files
authored
Update HD44780.cpp
POCSAG string was 6 characters, it HAS to be 5 or else it wraps to another line.
1 parent cd7527a commit 2f274d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

HD44780.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1053,7 +1053,7 @@ void CHD44780::clearNXDNInt()
10531053
void CHD44780::writePOCSAGInt(uint32_t ric, const std::string& message)
10541054
{
10551055
::lcdPosition(m_fd, m_cols - 5, m_rows - 1);
1056-
::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).
1056+
::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).
10571057
}
10581058

10591059
void CHD44780::clearPOCSAGInt()

0 commit comments

Comments
 (0)