Add a user control for Tx Delay, on the Advanced tab.

git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@7058 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
Joe Taylor
2016-09-06 23:18:48 +00:00
parent adce105920
commit b998689171
4 changed files with 43 additions and 7 deletions
+3 -3
View File
@@ -2672,8 +2672,8 @@ void MainWindow::guiUpdate()
Q_EMIT m_config.transceiver_tx_frequency (tx_frequency);
}
Q_EMIT m_config.transceiver_ptt (true); //Assert the PTT
ptt1Timer.start(200); //Sequencer delay
Q_EMIT m_config.transceiver_ptt (true); //Assert the PTT
ptt1Timer.start(int(1000.0*m_config.txDelay())); //Start-of-transmission sequencer delay
}
if(!m_bTxTime and !m_tune) m_btxok=false; //Time to stop transmitting
}
@@ -3041,7 +3041,7 @@ void MainWindow::stopTx()
tx_status_label.setStyleSheet("");
tx_status_label.setText("");
}
ptt0Timer.start(200); //Sequencer delay
ptt0Timer.start(200); //end-of-transmission sequencer delay
monitor (true);
statusUpdate ();
}