mirror of
https://github.com/f4exb/sdrangel.git
synced 2025-05-24 11:12:27 -04:00
GLSpectrum settings rename m_averagingNb to m_averagingValue for better consistency and ensure synchronization with m_averagingIndex
This commit is contained in:
parent
4d86d7e510
commit
9ea22a9cd5
@ -132,7 +132,11 @@ void ChannelAnalyzerWebAPIAdapter::webapiFormatChannelSettings(
|
|||||||
swgSpectrum->init();
|
swgSpectrum->init();
|
||||||
response.getChannelAnalyzerSettings()->setSpectrumConfig(swgSpectrum);
|
response.getChannelAnalyzerSettings()->setSpectrumConfig(swgSpectrum);
|
||||||
swgSpectrum->setAveragingMode((int) spectrumSettings.m_averagingMode);
|
swgSpectrum->setAveragingMode((int) spectrumSettings.m_averagingMode);
|
||||||
|
<<<<<<< ours
|
||||||
swgSpectrum->setAveragingValue(spectrumSettings.m_averagingValue);
|
swgSpectrum->setAveragingValue(spectrumSettings.m_averagingValue);
|
||||||
|
=======
|
||||||
|
swgSpectrum->setAveragingValue(GLSpectrumSettings::getAveragingValue(spectrumSettings.m_averagingIndex, spectrumSettings.m_averagingMode));
|
||||||
|
>>>>>>> theirs
|
||||||
swgSpectrum->setDecay(spectrumSettings.m_decay);
|
swgSpectrum->setDecay(spectrumSettings.m_decay);
|
||||||
swgSpectrum->setDecayDivisor(spectrumSettings.m_decayDivisor);
|
swgSpectrum->setDecayDivisor(spectrumSettings.m_decayDivisor);
|
||||||
swgSpectrum->setDisplayCurrent(spectrumSettings.m_displayCurrent ? 1 : 0);
|
swgSpectrum->setDisplayCurrent(spectrumSettings.m_displayCurrent ? 1 : 0);
|
||||||
@ -379,8 +383,15 @@ void ChannelAnalyzerWebAPIAdapter::webapiUpdateChannelSettings(
|
|||||||
if (channelSettingsKeys.contains("spectrumConfig.averagingMode")) {
|
if (channelSettingsKeys.contains("spectrumConfig.averagingMode")) {
|
||||||
spectrumSettings.m_averagingMode = (GLSpectrumSettings::AveragingMode) response.getChannelAnalyzerSettings()->getSpectrumConfig()->getAveragingMode();
|
spectrumSettings.m_averagingMode = (GLSpectrumSettings::AveragingMode) response.getChannelAnalyzerSettings()->getSpectrumConfig()->getAveragingMode();
|
||||||
}
|
}
|
||||||
|
<<<<<<< ours
|
||||||
if (channelSettingsKeys.contains("spectrumConfig.averagingValue")) {
|
if (channelSettingsKeys.contains("spectrumConfig.averagingValue")) {
|
||||||
spectrumSettings.m_averagingValue = response.getChannelAnalyzerSettings()->getSpectrumConfig()->getAveragingValue();
|
spectrumSettings.m_averagingValue = response.getChannelAnalyzerSettings()->getSpectrumConfig()->getAveragingValue();
|
||||||
|
=======
|
||||||
|
if (channelSettingsKeys.contains("spectrumConfig.averagingValue"))
|
||||||
|
{
|
||||||
|
spectrumSettings.m_averagingValue = response.getChannelAnalyzerSettings()->getSpectrumConfig()->getAveragingValue();
|
||||||
|
spectrumSettings.m_averagingIndex = GLSpectrumSettings::getAveragingIndex(spectrumSettings.m_averagingValue, spectrumSettings.m_averagingMode);
|
||||||
|
>>>>>>> theirs
|
||||||
}
|
}
|
||||||
if (channelSettingsKeys.contains("spectrumConfig.decay")) {
|
if (channelSettingsKeys.contains("spectrumConfig.decay")) {
|
||||||
spectrumSettings.m_decay = response.getChannelAnalyzerSettings()->getSpectrumConfig()->getDecay();
|
spectrumSettings.m_decay = response.getChannelAnalyzerSettings()->getSpectrumConfig()->getDecay();
|
||||||
|
@ -48,7 +48,11 @@ void GLSpectrumSettings::resetToDefaults()
|
|||||||
m_displayGrid = false;
|
m_displayGrid = false;
|
||||||
m_averagingMode = AvgModeNone;
|
m_averagingMode = AvgModeNone;
|
||||||
m_averagingIndex = 0;
|
m_averagingIndex = 0;
|
||||||
|
<<<<<<< ours
|
||||||
m_averagingValue = 1;
|
m_averagingValue = 1;
|
||||||
|
=======
|
||||||
|
m_averagingValue = 1;
|
||||||
|
>>>>>>> theirs
|
||||||
m_linear = false;
|
m_linear = false;
|
||||||
m_ssb = false;
|
m_ssb = false;
|
||||||
m_usb = true;
|
m_usb = true;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user