mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-25 13:48:42 -05:00
For "D4C/B HK76": Make FT8 beacon transmissions only at top of a UTC minute.
This commit is contained in:
parent
1044342245
commit
c46ec025e0
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user