mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-02-03 09:44:24 -05:00
Use m_baseCall for Fox's RR73 message.
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@8372 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
cfa196d318
commit
9dde6dae73
@ -898,7 +898,7 @@ MainWindow::MainWindow(QDir const& temp_directory, bool multiple,
|
|||||||
connect (&splashTimer, &QTimer::timeout, this, &MainWindow::splash_done);
|
connect (&splashTimer, &QTimer::timeout, this, &MainWindow::splash_done);
|
||||||
splashTimer.setSingleShot (true);
|
splashTimer.setSingleShot (true);
|
||||||
splashTimer.start (20 * 1000);
|
splashTimer.start (20 * 1000);
|
||||||
|
/*
|
||||||
if(m_config.my_callsign()=="K1JT" or m_config.my_callsign()=="K9AN" or
|
if(m_config.my_callsign()=="K1JT" or m_config.my_callsign()=="K9AN" or
|
||||||
m_config.my_callsign()=="G4WJS" || m_config.my_callsign () == "W9XYZ" or
|
m_config.my_callsign()=="G4WJS" || m_config.my_callsign () == "W9XYZ" or
|
||||||
m_config.my_callsign()=="K1ABC" or m_config.my_callsign()=="K1ABC/2" or
|
m_config.my_callsign()=="K1ABC" or m_config.my_callsign()=="K1ABC/2" or
|
||||||
@ -912,7 +912,7 @@ MainWindow::MainWindow(QDir const& temp_directory, bool multiple,
|
|||||||
"Please use WSJT-X v1.8.0\n", errorMsg);
|
"Please use WSJT-X v1.8.0\n", errorMsg);
|
||||||
Q_EMIT finished ();
|
Q_EMIT finished ();
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
if(!ui->cbMenus->isChecked()) {
|
if(!ui->cbMenus->isChecked()) {
|
||||||
ui->cbMenus->setChecked(true);
|
ui->cbMenus->setChecked(true);
|
||||||
ui->cbMenus->setChecked(false);
|
ui->cbMenus->setChecked(false);
|
||||||
@ -7381,7 +7381,7 @@ void MainWindow::foxTxSequencer()
|
|||||||
while(!m_foxRR73Queue.isEmpty()) {
|
while(!m_foxRR73Queue.isEmpty()) {
|
||||||
hc1=m_foxRR73Queue.dequeue(); //First priority is to send RR73 messages
|
hc1=m_foxRR73Queue.dequeue(); //First priority is to send RR73 messages
|
||||||
if(m_houndQueue.isEmpty()) {
|
if(m_houndQueue.isEmpty()) {
|
||||||
fm = hc1 + " " + m_config.my_callsign() + " RR73"; //Send a standard FT8 message
|
fm = hc1 + " " + m_baseCall + " RR73"; //Send a standard FT8 message
|
||||||
} else {
|
} else {
|
||||||
t=m_houndQueue.dequeue(); //Fetch new hound from queue
|
t=m_houndQueue.dequeue(); //Fetch new hound from queue
|
||||||
hc2=t.mid(0,6).trimmed(); //hound call
|
hc2=t.mid(0,6).trimmed(); //hound call
|
||||||
|
Loading…
Reference in New Issue
Block a user