1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2025-04-05 19:18:38 -04:00

SSB channels: fix the fixes (2)

This commit is contained in:
f4exb 2017-11-03 20:13:54 +01:00
parent 3bdddb5818
commit 465416ee19
2 changed files with 24 additions and 7 deletions

View File

@ -260,7 +260,7 @@ SSBDemodGUI::SSBDemodGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, QWidget
ui->spectrumGUI->setBuddies(m_spectrumVis->getInputMessageQueue(), m_spectrumVis, ui->glSpectrum);
displaySettings();
applyBandwidths(true);
applyBandwidths(true); // does applySettings(true)
}
SSBDemodGUI::~SSBDemodGUI()
@ -303,6 +303,14 @@ void SSBDemodGUI::applyBandwidths(bool force)
int lw = ui->lowCut->value();
int bwMax = 480/(1<<spanLog2);
qDebug() << "SSBDemodGUI::applyBandwidths:"
<< " dsb: " << dsb
<< " spanLog2: " << spanLog2
<< " m_spectrumRate: " << m_spectrumRate
<< " bw: " << bw
<< " lw: " << lw
<< " bwMax: " << bwMax;
bw = bw < -bwMax ? -bwMax : bw > bwMax ? bwMax : bw;
if (bw < 0) {

View File

@ -80,15 +80,16 @@ bool SSBModGUI::deserialize(const QByteArray& data)
{
if(m_settings.deserialize(data))
{
qDebug("SSBModGUI::deserialize");
displaySettings();
applySettings(true); // will have true
applyBandwidths(true); // does applySettings(true)
return true;
}
else
{
m_settings.resetToDefaults();
displaySettings();
applySettings(true); // will have true
applyBandwidths(true); // does applySettings(true)
return false;
}
}
@ -415,11 +416,11 @@ SSBModGUI::SSBModGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, QWidget* pa
m_settings.setSpectrumGUI(ui->spectrumGUI);
m_settings.setCWKeyerGUI(ui->cwKeyerGUI);
displaySettings();
applyBandwidths(true); // does applySettings(true)
connect(getInputMessageQueue(), SIGNAL(messageEnqueued()), this, SLOT(handleSourceMessages()));
connect(m_ssbMod, SIGNAL(levelChanged(qreal, qreal, int)), ui->volumeMeter, SLOT(levelChanged(qreal, qreal, int)));
displaySettings();
applyBandwidths(true); // does applySettings(true)
}
SSBModGUI::~SSBModGUI()
@ -459,6 +460,14 @@ void SSBModGUI::applyBandwidths(bool force)
int lw = ui->lowCut->value();
int bwMax = 480/(1<<spanLog2);
qDebug() << "SSBModGUI::applyBandwidths:"
<< " dsb: " << dsb
<< " spanLog2: " << spanLog2
<< " m_spectrumRate: " << m_spectrumRate
<< " bw: " << bw
<< " lw: " << lw
<< " bwMax: " << bwMax;
bw = bw < -bwMax ? -bwMax : bw > bwMax ? bwMax : bw;
if (bw < 0) {
@ -530,7 +539,7 @@ void SSBModGUI::applyBandwidths(bool force)
void SSBModGUI::displaySettings()
{
bool applySettingsWereBlocked = blockApplySettings(true);
bool applySettingsWereBlocked = blockApplySettings(true);
m_channelMarker.blockSignals(true);