Minimize useless late starts of transmissions.

git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@8459 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
Joe Taylor 2018-02-05 20:13:16 +00:00
parent ece7dff7b3
commit a6f6554270
2 changed files with 5 additions and 3 deletions

View File

@ -3257,8 +3257,9 @@ void MainWindow::guiUpdate()
}
float fTR=float((nsec%m_TRperiod))/m_TRperiod;
// if(g_iptt==0 and ((m_bTxTime and fTR<0.4) or m_tune )) {
if(g_iptt==0 and ((m_bTxTime and fTR<99) or m_tune )) { //### Allow late starts
float fTRmax=0.6;
if(m_config.bHound()) fTRmax=0.07;
if(g_iptt==0 and ((m_bTxTime and fTR<fTRmax) or m_tune )) { //### Allow late starts
icw[0]=m_ncw;
g_iptt = 1;
setRig ();
@ -3567,7 +3568,7 @@ void MainWindow::guiUpdate()
if(m_config.bHound()) {
m_bWarnedHound=false;
qint32 tHound=QDateTime::currentMSecsSinceEpoch()/1000 - m_tAutoOn;
//To keep calling, Hound must reactivate Enable Tx at least once every 2 minutes:
//To keep calling Fox, Hound must reactivate Enable Tx at least once every 2 minutes
if(tHound >= 120) auto_tx_mode(false);
}
if(m_auto and m_mode=="Echo" and m_bEchoTxOK) {

View File

@ -428,6 +428,7 @@ private:
qint32 m_Nlist=12;
qint32 m_Nslots=5;
qint32 m_nFoxMsgTimes[5]={0,0,0,0,0};
qint32 m_tAutoOn;
bool m_btxok; //True if OK to transmit
bool m_diskData;