1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-08-15 07:55:26 -04:00

Scope: updated documentation and fixed live rate setting when a decimation takes place

This commit is contained in:
f4exb
2018-10-20 10:41:49 +02:00
parent 8836b98542
commit fac0e652c4
7 changed files with 28 additions and 6 deletions
@@ -462,7 +462,7 @@ void ChannelAnalyzerGUI::setNewFinalRate()
QString s = QString::number(m_rate/1000.0, 'f', 1);
ui->spanText->setText(tr("%1 kS/s").arg(s));
m_scopeVis->setLiveRate(m_rate);
m_scopeVis->setLiveRate(getRequestedChannelSampleRate());
}
void ChannelAnalyzerGUI::setFiltersUIBoundaries()
@@ -547,6 +547,8 @@ void ChannelAnalyzerGUI::applySettings(bool force)
ChannelAnalyzer::MsgConfigureChannelAnalyzer* message =
ChannelAnalyzer::MsgConfigureChannelAnalyzer::create( m_settings, force);
m_channelAnalyzer->getInputMessageQueue()->push(message);
m_scopeVis->setLiveRateLog2Decim(m_settings.m_spanLog2);
}
}