Merge pull request #1727 from srcejon/fix_1960

Add missing settings keys for Pluto Output.
This commit is contained in:
Edouard Griffiths 2023-07-03 21:50:57 +02:00 committed by GitHub
commit f414c1284f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -217,7 +217,7 @@ bool PlutoSDROutput::handleMessage(const Message& message)
PlutoSDROutputSettings newSettings = m_settings;
newSettings.m_lpfFIREnable = conf.isLpfFirEnable();
applySettings(newSettings, QList<QString>{"lpfFIREnable"});
applySettings(newSettings, QList<QString>{"devSampleRate", "lpfFIRlog2Interp", "lpfFIRBW", "LOppmTenths", "lpfFIREnable"});
return true;
}