mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-09-04 06:07:50 -04:00
1. No 2 kHz frequency offset for JT9 on 60m band.
2. Don't update the "Last Tx" message until current transmission is complete. These suggestions from W9MDB. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@7429 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
9c3b30d927
commit
b7309f1d36
@ -1648,6 +1648,17 @@ void MainWindow::displayDialFrequency ()
|
|||||||
ui->bandComboBox->setCurrentText (band_name);
|
ui->bandComboBox->setCurrentText (band_name);
|
||||||
m_wideGraph->setRxBand (band_name);
|
m_wideGraph->setRxBand (band_name);
|
||||||
m_lastBand = band_name;
|
m_lastBand = band_name;
|
||||||
|
// For 60M we'll move the JT9 offset to zero
|
||||||
|
static int saveRxRange = -1;
|
||||||
|
if (saveRxRange < 0) saveRxRange = m_wideGraph->Fmin();
|
||||||
|
if (band_name == "60m") {
|
||||||
|
saveRxRange = m_wideGraph->Fmin();
|
||||||
|
m_wideGraph->setRxRange(0);
|
||||||
|
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
m_wideGraph->setRxRange(saveRxRange);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// search working frequencies for one we are within 10kHz of (1 Mhz
|
// search working frequencies for one we are within 10kHz of (1 Mhz
|
||||||
@ -2819,7 +2830,6 @@ void MainWindow::guiUpdate()
|
|||||||
m_currentMessage = "TUNE";
|
m_currentMessage = "TUNE";
|
||||||
m_currentMessageType = -1;
|
m_currentMessageType = -1;
|
||||||
}
|
}
|
||||||
last_tx_label.setText("Last Tx: " + m_currentMessage.trimmed());
|
|
||||||
if(m_restart) {
|
if(m_restart) {
|
||||||
QFile f {m_dataDir.absoluteFilePath ("ALL.TXT")};
|
QFile f {m_dataDir.absoluteFilePath ("ALL.TXT")};
|
||||||
if (f.open(QIODevice::WriteOnly | QIODevice::Text | QIODevice::Append))
|
if (f.open(QIODevice::WriteOnly | QIODevice::Text | QIODevice::Append))
|
||||||
@ -3122,6 +3132,7 @@ void MainWindow::stopTx2()
|
|||||||
WSPR_scheduling ();
|
WSPR_scheduling ();
|
||||||
m_ntr=0;
|
m_ntr=0;
|
||||||
}
|
}
|
||||||
|
last_tx_label.setText("Last Tx: " + m_currentMessage.trimmed());
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::ba2msg(QByteArray ba, char message[]) //ba2msg()
|
void MainWindow::ba2msg(QByteArray ba, char message[]) //ba2msg()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user