1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-09 09:25:07 -04:00

Spectrum: added log/linear control

This commit is contained in:
f4exb
2018-07-04 23:11:28 +02:00
parent 51e5987158
commit d5f153ff75
13 changed files with 86 additions and 14 deletions
+8 -1
View File
@@ -359,7 +359,14 @@ BFMDemodGUI::BFMDemodGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, Baseban
ui->glSpectrum->setDisplayWaterfall(false);
ui->glSpectrum->setDisplayMaxHold(false);
ui->glSpectrum->setSsbSpectrum(true);
m_spectrumVis->configure(m_spectrumVis->getInputMessageQueue(), 64, 10, 0, 0, FFTWindow::BlackmanHarris);
m_spectrumVis->configure(
m_spectrumVis->getInputMessageQueue(),
64, // FFT size
10, // overlapping %
0, // number of averaging samples
0, // no averaging
FFTWindow::BlackmanHarris,
false); // logarithmic scale
connect(&MainWindow::getInstance()->getMasterTimer(), SIGNAL(timeout()), this, SLOT(tick()));
m_channelMarker.blockSignals(true);