mirror of
https://github.com/f4exb/sdrangel.git
synced 2025-02-03 09:44:01 -05:00
LimeSDR input: GUI updates
This commit is contained in:
parent
e374dd234e
commit
d7acf6f1f9
@ -330,7 +330,7 @@ void LimeSDRInputGUI::on_swDecim_currentIndexChanged(int index)
|
||||
sendSettings();
|
||||
}
|
||||
|
||||
void LimeSDRInputGUI::on_lpf_changed(int value)
|
||||
void LimeSDRInputGUI::on_lpf_changed(quint64 value)
|
||||
{
|
||||
m_settings.m_lpfBW = value * 1000;
|
||||
sendSettings();
|
||||
@ -351,5 +351,6 @@ void LimeSDRInputGUI::on_lpFIR_changed(quint64 value)
|
||||
void LimeSDRInputGUI::on_gain_valueChanged(int value)
|
||||
{
|
||||
m_settings.m_gain = value;
|
||||
ui->gainText->setText(tr("%1dB").arg(m_settings.m_gain));
|
||||
sendSettings();
|
||||
}
|
||||
|
@ -78,7 +78,7 @@ private slots:
|
||||
void on_sampleRate_changed(quint64 value);
|
||||
void on_hwDecim_currentIndexChanged(int index);
|
||||
void on_swDecim_currentIndexChanged(int index);
|
||||
void on_lpf_changed(int value);
|
||||
void on_lpf_changed(quint64 value);
|
||||
void on_lpFIREnable_toggled(bool checked);
|
||||
void on_lpFIR_changed(quint64 value);
|
||||
void on_gain_valueChanged(int value);
|
||||
|
@ -478,7 +478,7 @@
|
||||
<item>
|
||||
<widget class="QLabel" name="lpfUnits">
|
||||
<property name="text">
|
||||
<string>k</string>
|
||||
<string>kHz</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
@ -533,7 +533,7 @@
|
||||
<item>
|
||||
<widget class="QLabel" name="lpFIRUnits">
|
||||
<property name="text">
|
||||
<string>k</string>
|
||||
<string>kHz</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
|
Loading…
Reference in New Issue
Block a user