mirror of
https://github.com/f4exb/sdrangel.git
synced 2025-02-21 04:58:38 -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();
|
sendSettings();
|
||||||
}
|
}
|
||||||
|
|
||||||
void LimeSDRInputGUI::on_lpf_changed(int value)
|
void LimeSDRInputGUI::on_lpf_changed(quint64 value)
|
||||||
{
|
{
|
||||||
m_settings.m_lpfBW = value * 1000;
|
m_settings.m_lpfBW = value * 1000;
|
||||||
sendSettings();
|
sendSettings();
|
||||||
@ -351,5 +351,6 @@ void LimeSDRInputGUI::on_lpFIR_changed(quint64 value)
|
|||||||
void LimeSDRInputGUI::on_gain_valueChanged(int value)
|
void LimeSDRInputGUI::on_gain_valueChanged(int value)
|
||||||
{
|
{
|
||||||
m_settings.m_gain = value;
|
m_settings.m_gain = value;
|
||||||
|
ui->gainText->setText(tr("%1dB").arg(m_settings.m_gain));
|
||||||
sendSettings();
|
sendSettings();
|
||||||
}
|
}
|
||||||
|
@ -78,7 +78,7 @@ private slots:
|
|||||||
void on_sampleRate_changed(quint64 value);
|
void on_sampleRate_changed(quint64 value);
|
||||||
void on_hwDecim_currentIndexChanged(int index);
|
void on_hwDecim_currentIndexChanged(int index);
|
||||||
void on_swDecim_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_lpFIREnable_toggled(bool checked);
|
||||||
void on_lpFIR_changed(quint64 value);
|
void on_lpFIR_changed(quint64 value);
|
||||||
void on_gain_valueChanged(int value);
|
void on_gain_valueChanged(int value);
|
||||||
|
@ -478,7 +478,7 @@
|
|||||||
<item>
|
<item>
|
||||||
<widget class="QLabel" name="lpfUnits">
|
<widget class="QLabel" name="lpfUnits">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>k</string>
|
<string>kHz</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
@ -533,7 +533,7 @@
|
|||||||
<item>
|
<item>
|
||||||
<widget class="QLabel" name="lpFIRUnits">
|
<widget class="QLabel" name="lpFIRUnits">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>k</string>
|
<string>kHz</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
Loading…
Reference in New Issue
Block a user