start idTimer

fix #3
This commit is contained in:
Christoph Kottke 2018-08-08 15:00:06 +02:00
parent e4b8d0b32b
commit f080190294

View file

@ -155,7 +155,14 @@ void CAPRSWriter::setPort(const wxString& callsign, const wxString& band, double
bool CAPRSWriter::open()
{
return m_thread->start();
bool ret = m_thread->start();
if(ret) {
sendIdFrames();
m_idTimer.start();
return ret;
}
return false;
}
void CAPRSWriter::writeHeader(const wxString& callsign, const CHeaderData& header)