mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-03-24 13:08:34 -04:00
Remove several more vestiges of WSPR-LF mode.
This commit is contained in:
parent
8903041aa9
commit
eb1c60e454
@ -1564,7 +1564,6 @@ void MainWindow::dataSink(qint64 frames)
|
||||
|
||||
void MainWindow::startP1()
|
||||
{
|
||||
// if(WSPR-LF) ... was here
|
||||
p1.start (QDir::toNativeSeparators (QDir {QApplication::applicationDirPath ()}.absoluteFilePath ("wsprd")), m_cmndP1);
|
||||
}
|
||||
|
||||
@ -7959,7 +7958,7 @@ void MainWindow::WSPR_scheduling ()
|
||||
band_hopping_label.setText (hop_data.period_name_);
|
||||
}
|
||||
else {
|
||||
m_WSPR_tx_next = m_WSPR_band_hopping.next_is_tx ("WSPR-LF" == m_mode);
|
||||
m_WSPR_tx_next = m_WSPR_band_hopping.next_is_tx(m_mode=="FST240W");
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -3385,23 +3385,6 @@ list. The list can be maintained in Settings (F2).</string>
|
||||
<string>Equalization tools ...</string>
|
||||
</property>
|
||||
</action>
|
||||
<action name="actionWSPR_LF">
|
||||
<property name="checkable">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
<property name="enabled">
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>WSPR-LF</string>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Experimental LF/MF mode</string>
|
||||
</property>
|
||||
<property name="visible">
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
</action>
|
||||
<action name="actionFT8">
|
||||
<property name="checkable">
|
||||
<bool>true</bool>
|
||||
|
@ -481,10 +481,10 @@ void CPlotter::DrawOverlay() //DrawOverlay()
|
||||
painter0.drawLine(x1,29,x2,29);
|
||||
}
|
||||
|
||||
if(m_mode=="WSPR-LF") {
|
||||
x1=XfromFreq(1600);
|
||||
x2=XfromFreq(1700);
|
||||
painter0.drawLine(x1,29,x2,29);
|
||||
if(m_mode=="FST240W") {
|
||||
x1=XfromFreq(2600);
|
||||
x2=XfromFreq(2700);
|
||||
painter0.drawLine(x1,26,x2,26);
|
||||
}
|
||||
|
||||
if(m_mode=="FreqCal") { //FreqCal
|
||||
|
Loading…
Reference in New Issue
Block a user