mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-12-17 23:28:50 -05:00
LimeRFE USB: fixed attenuator and AM/FM notch settings
This commit is contained in:
parent
07db5c0f80
commit
865f8691e4
@ -855,6 +855,18 @@ void LimeRFEUSBDialog::on_rxTxToggle_clicked()
|
||||
}
|
||||
}
|
||||
|
||||
void LimeRFEUSBDialog::on_attenuation_currentIndexChanged(int index)
|
||||
{
|
||||
m_settings.m_attenuationFactor = index;
|
||||
highlightApplyButton(true);
|
||||
}
|
||||
|
||||
void LimeRFEUSBDialog::on_amFmNotchFilter_clicked()
|
||||
{
|
||||
m_settings.m_amfmNotch = ui->amFmNotchFilter->isChecked();
|
||||
highlightApplyButton(true);
|
||||
}
|
||||
|
||||
void LimeRFEUSBDialog::on_apply_clicked()
|
||||
{
|
||||
ui->statusText->clear();
|
||||
|
@ -86,6 +86,8 @@ private slots:
|
||||
void on_rxChannelGroup_currentIndexChanged(int index);
|
||||
void on_rxChannel_currentIndexChanged(int index);
|
||||
void on_rxPort_currentIndexChanged(int index);
|
||||
void on_attenuation_currentIndexChanged(int index);
|
||||
void on_amFmNotchFilter_clicked();
|
||||
void on_txFollowsRx_clicked();
|
||||
void on_txChannelGroup_currentIndexChanged(int index);
|
||||
void on_txChannel_currentIndexChanged(int index);
|
||||
|
Loading…
Reference in New Issue
Block a user