1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-12 10:48:42 -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
@@ -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;
}