mirror of
https://github.com/g4klx/MMDVMHost.git
synced 2026-04-04 14:07:36 +00:00
Add timer to return from CW Ident
This commit is contained in:
parent
4e1b002665
commit
28775026d4
10 changed files with 32 additions and 1 deletions
|
|
@ -157,6 +157,9 @@ void CDisplay::clearFusion()
|
|||
|
||||
void CDisplay::writeCW()
|
||||
{
|
||||
m_timer1.start();
|
||||
m_mode1 = MODE_CW;
|
||||
|
||||
writeCWInt();
|
||||
}
|
||||
|
||||
|
|
@ -180,6 +183,11 @@ void CDisplay::clock(unsigned int ms)
|
|||
m_mode1 = MODE_IDLE;
|
||||
m_timer1.stop();
|
||||
break;
|
||||
case MODE_CW:
|
||||
clearCWInt();
|
||||
m_mode1 = MODE_IDLE;
|
||||
m_timer1.stop();
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue