Removed WSPR QRG guess

This commit is contained in:
Jordan Sherer 2019-10-27 14:03:43 -04:00
parent 952d9d7080
commit 816bfa4b63
2 changed files with 2 additions and 6 deletions

View File

@ -283,7 +283,6 @@ MainWindow::MainWindow(QDir const& temp_directory, bool multiple,
// no parent so that it has a taskbar icon
m_logDlg (new LogQSO (program_title (), m_settings, &m_config, nullptr)),
m_lastDialFreq {0},
m_dialFreqRxWSPR {0},
m_detector {new Detector {RX_SAMPLE_RATE, NTMAX, downSampleFactor}},
m_FFTSize {6192 / 2}, // conservative value to avoid buffer overruns
m_soundInput {new SoundInput},
@ -2497,10 +2496,12 @@ void MainWindow::dataSink(qint64 frames)
dec_data.params.ndiskdat=0;
}
#if 0
m_bUseRef=m_wideGraph->useRef();
refspectrum_(&dec_data.d2[k-m_nsps/2],&m_bClearRefSpec,&m_bRefSpec,
&m_bUseRef,c_fname,len);
m_bClearRefSpec=false;
#endif
// Get power, spectrum, and ihsym
int trmin=m_TRperiod/60;
@ -2524,10 +2525,6 @@ void MainWindow::dataSink(qint64 frames)
fixStop();
if(m_ihsym==3*m_hsymStop/4) {
m_dialFreqRxWSPR=m_freqNominal;
}
// could we decode all at once?
QDateTime now {DriftingDateTime::currentDateTimeUtc ()};

View File

@ -487,7 +487,6 @@ private:
Frequency m_lastDialFreq;
QString m_lastBand;
QString m_lastCallsign;
Frequency m_dialFreqRxWSPR; // best guess at WSPR QRG
Detector * m_detector;
unsigned m_FFTSize;