mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-02-03 09:44:24 -05:00
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:
parent
8109155280
commit
0db2356760
@ -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 ();
|
||||
|
Loading…
Reference in New Issue
Block a user