Merge branch 'develop' of bitbucket.org:k1jt/wsjtx into develop

This commit is contained in:
Steven Franke 2020-04-07 13:18:47 -05:00
commit 74dc865c4c
1 changed files with 5 additions and 0 deletions

View File

@ -3564,6 +3564,11 @@ void MainWindow::guiUpdate()
// For all modes other than WSPR
m_bTxTime = (t2p >= tx1) and (t2p < tx2);
if(m_mode=="Echo") m_bTxTime = m_bTxTime and m_bEchoTxOK;
if(m_mode=="FT8" and ui->tx5->currentText().contains("/B ")) {
//FT8 beacon transmissiion from Tx5 only at top of a UTC minute
double t4p=fmod(tsec,4*m_TRperiod);
if(t4p >= 30.0) m_bTxTime=false;
}
}
if(m_tune) m_bTxTime=true; //"Tune" takes precedence