Change timings for fixed location startup.

This commit is contained in:
Jonathan Naylor 2020-06-05 11:16:52 +01:00
parent db4a56d5c3
commit 0e4e612d35
1 changed files with 4 additions and 9 deletions

View File

@ -99,23 +99,17 @@ bool CAPRSWriter::open()
::gps_stream(&m_gpsdData, WATCH_ENABLE | WATCH_JSON, NULL);
LogMessage("Connected to GPSD");
// Poll the GPS every minute
m_idTimer.setTimeout(60U);
} else {
m_idTimer.setTimeout(20U * 60U);
}
#else
m_idTimer.setTimeout(20U * 60U);
#endif
m_idTimer.start();
bool ret = m_aprsSocket.open();
if (!ret)
return false;
LogMessage("Opened connection to the APRS Gateway");
m_idTimer.setTimeout(60U);
m_idTimer.start();
return true;
}
@ -144,6 +138,7 @@ void CAPRSWriter::clock(unsigned int ms)
#endif
if (m_idTimer.hasExpired()) {
sendIdFrameFixed();
m_idTimer.setTimeout(20U * 60U);
m_idTimer.start();
}
#if !defined(_WIN32) && !defined(_WIN64)