Closed pd9mwo closed 3 years ago
Issue with a HD44780 16x2 screen ( possible also others?? )
At line 1055 & 1061 these lines have to change: So - 5 into - 9 because it will not fit on the screen, POCSAG TX won't fit , it will go to the 1st line
1053 void CHD44780::writePOCSAGInt(uint32_t ric, const std::string& message) 1054 { 1055 ::lcdPosition(m_fd, m_cols - 9, m_rows - 1); 1056 ::lcdPuts(m_fd, "POCSAG TX"); 1057 } 1058 1059 void CHD44780::clearPOCSAGInt() 1060 { 1061 ::lcdPosition(m_fd, m_cols - 9, m_rows - 1); 1062 ::lcdPuts(m_fd, " Idle"); 1063 }
Issue with a HD44780 16x2 screen ( possible also others?? )
At line 1055 & 1061 these lines have to change: So - 5 into - 9 because it will not fit on the screen, POCSAG TX won't fit , it will go to the 1st line
1053 void CHD44780::writePOCSAGInt(uint32_t ric, const std::string& message) 1054 { 1055 ::lcdPosition(m_fd, m_cols - 9, m_rows - 1); 1056 ::lcdPuts(m_fd, "POCSAG TX"); 1057 } 1058 1059 void CHD44780::clearPOCSAGInt() 1060 { 1061 ::lcdPosition(m_fd, m_cols - 9, m_rows - 1); 1062 ::lcdPuts(m_fd, " Idle"); 1063 }