Skip to content

Commit

Permalink
Merge pull request #715 from KE7FNS/master
Browse files Browse the repository at this point in the history
Reversing recent changes
  • Loading branch information
g4klx authored Oct 5, 2021
2 parents ed54188 + 8b67d85 commit cd7527a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions HD44780.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1052,14 +1052,14 @@ void CHD44780::clearNXDNInt()

void CHD44780::writePOCSAGInt(uint32_t ric, const std::string& message)
{
::lcdPosition(m_fd, m_cols - 9, m_rows - 1);
::lcdPuts(m_fd, "POCSAG TX");
::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).
}

void CHD44780::clearPOCSAGInt()
{
::lcdPosition(m_fd, m_cols - 9, m_rows - 1);
::lcdPuts(m_fd, " Idle");
::lcdPosition(m_fd, m_cols - 5, m_rows - 1);
::lcdPuts(m_fd, " Idle"); // Reverted back to 5 character implementation.
}

void CHD44780::writeCWInt()
Expand Down

1 comment on commit cd7527a

@ady124
Copy link

@ady124 ady124 commented on cd7527a Oct 7, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi all

Please sign in to comment.