Tweak the "late start" logic.

git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@8486 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
Joe Taylor 2018-02-09 15:04:31 +00:00
parent 8109155280
commit 0db2356760
1 changed files with 2 additions and 4 deletions

View File

@ -3265,10 +3265,8 @@ void MainWindow::guiUpdate()
tx_watchdog (true); // disable transmit
}
float fTR=float((nsec%m_TRperiod))/m_TRperiod;
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
float fTR=float((ms%(1000*m_TRperiod)))/(1000*m_TRperiod);
if(g_iptt==0 and ((m_bTxTime and fTR<0.75) or m_tune )) { //### Allow late starts
icw[0]=m_ncw;
g_iptt = 1;
setRig ();