mirror of
https://github.com/f4exb/sdrangel.git
synced 2025-09-04 14:17:50 -04:00
LimeSDR GUIs: always apply change of FIR bandwidth
This commit is contained in:
parent
36511a4cb4
commit
62deb64f57
@ -526,10 +526,7 @@ void LimeSDROutputGUI::on_lpFIREnable_toggled(bool checked)
|
|||||||
void LimeSDROutputGUI::on_lpFIR_changed(quint64 value)
|
void LimeSDROutputGUI::on_lpFIR_changed(quint64 value)
|
||||||
{
|
{
|
||||||
m_settings.m_lpfFIRBW = value * 1000;
|
m_settings.m_lpfFIRBW = value * 1000;
|
||||||
|
sendSettings();
|
||||||
if (m_settings.m_lpfFIREnable) { // do not send the update if the FIR is disabled
|
|
||||||
sendSettings();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void LimeSDROutputGUI::on_gain_valueChanged(int value)
|
void LimeSDROutputGUI::on_gain_valueChanged(int value)
|
||||||
|
@ -34,7 +34,7 @@
|
|||||||
|
|
||||||
const PluginDescriptor LimeSDROutputPlugin::m_pluginDescriptor = {
|
const PluginDescriptor LimeSDROutputPlugin::m_pluginDescriptor = {
|
||||||
QString("LimeSDR Output"),
|
QString("LimeSDR Output"),
|
||||||
QString("3.14.5"),
|
QString("4.0.7"),
|
||||||
QString("(c) Edouard Griffiths, F4EXB"),
|
QString("(c) Edouard Griffiths, F4EXB"),
|
||||||
QString("https://github.com/f4exb/sdrangel"),
|
QString("https://github.com/f4exb/sdrangel"),
|
||||||
true,
|
true,
|
||||||
|
@ -574,10 +574,7 @@ void LimeSDRInputGUI::on_lpFIREnable_toggled(bool checked)
|
|||||||
void LimeSDRInputGUI::on_lpFIR_changed(quint64 value)
|
void LimeSDRInputGUI::on_lpFIR_changed(quint64 value)
|
||||||
{
|
{
|
||||||
m_settings.m_lpfFIRBW = value * 1000;
|
m_settings.m_lpfFIRBW = value * 1000;
|
||||||
|
sendSettings();
|
||||||
if (m_settings.m_lpfFIREnable) { // do not send the update if the FIR is disabled
|
|
||||||
sendSettings();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void LimeSDRInputGUI::on_gainMode_currentIndexChanged(int index)
|
void LimeSDRInputGUI::on_gainMode_currentIndexChanged(int index)
|
||||||
|
@ -33,7 +33,7 @@
|
|||||||
|
|
||||||
const PluginDescriptor LimeSDRInputPlugin::m_pluginDescriptor = {
|
const PluginDescriptor LimeSDRInputPlugin::m_pluginDescriptor = {
|
||||||
QString("LimeSDR Input"),
|
QString("LimeSDR Input"),
|
||||||
QString("3.14.6"),
|
QString("4.0.7"),
|
||||||
QString("(c) Edouard Griffiths, F4EXB"),
|
QString("(c) Edouard Griffiths, F4EXB"),
|
||||||
QString("https://github.com/f4exb/sdrangel"),
|
QString("https://github.com/f4exb/sdrangel"),
|
||||||
true,
|
true,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user