1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-09-28 15:56:33 -04:00

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

View File

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