Skip to content

Commit

Permalink
Merge pull request #84 from g0wfv/develop
Browse files Browse the repository at this point in the history
Fix TS1 not displaying
  • Loading branch information
g4klx committed Jun 5, 2016
2 parents 8875887 + b54f1a0 commit d2b9128
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion HD44780.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -544,7 +544,7 @@ void CHD44780::writeDMRInt(unsigned int slotNo, const std::string& src, bool gro
if (slotNo == 1U) {
::lcdPosition(m_fd, 0, (m_rows / 2) - 1);
::lcdPuts(m_fd, "1 ");
::sprintf(m_buffer2, "%s > %s%s ", src.c_str(), group ? "TG" : "", dst.c_str());
::sprintf(m_buffer1, "%s > %s%s ", src.c_str(), group ? "TG" : "", dst.c_str());
::lcdPrintf(m_fd, "%.*s", m_cols - 2U, m_buffer1);

// Start the scroll timer on slot 1 if text in m_buffer1 will not fit in the space available
Expand Down

0 comments on commit d2b9128

Please sign in to comment.