mirror of
https://github.com/g4klx/MMDVMHost.git
synced 2026-04-05 06:25:24 +00:00
Add CW transmission info to HD44780 LCD displays
This commit is contained in:
parent
148b640397
commit
7ab66136ee
2 changed files with 15 additions and 0 deletions
12
HD44780.cpp
12
HD44780.cpp
|
|
@ -730,6 +730,18 @@ void CHD44780::clearFusionInt()
|
|||
}
|
||||
}
|
||||
|
||||
void CHD44780::writeCWInt()
|
||||
{
|
||||
::lcdPosition(m_fd, m_cols - 5, m_rows - 1);
|
||||
::lcdPuts(m_fd, "CW TX");
|
||||
}
|
||||
|
||||
void CHD44780::clearCWInt()
|
||||
{
|
||||
::lcdPosition(m_fd, m_cols - 5, m_rows - 1);
|
||||
::lcdPuts(m_fd, " Idle");
|
||||
}
|
||||
|
||||
void CHD44780::clockInt(unsigned int ms)
|
||||
{
|
||||
m_clockDisplayTimer.clock(ms);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue