1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-05 07:24:44 -04:00

SoapySDR support: output: tunable elements GUIs

This commit is contained in:
f4exb
2018-11-06 20:19:20 +01:00
parent 6ea676d5c4
commit e17828c7ee
7 changed files with 105 additions and 4 deletions
@@ -306,7 +306,6 @@ void SoapySDRInputGui::bandwidthChanged(double bandwidth)
void SoapySDRInputGui::tunableElementChanged(QString name, double value)
{
qDebug("SoapySDRInputGui::tunableElementChanged: name: %s value: %lf", name.toStdString().c_str(), value);
m_settings.m_tunableElements[name] = value;
sendSettings();
}
@@ -92,10 +92,10 @@ private:
private slots:
void handleInputMessages();
void sampleRateChanged(double sampleRate);
void antennasChanged();
void tunableElementChanged(QString name, double value);
void sampleRateChanged(double sampleRate);
void bandwidthChanged(double bandwidth);
void tunableElementChanged(QString name, double value);
void on_centerFrequency_changed(quint64 value);
void on_LOppm_valueChanged(int value);
void on_dcOffset_toggled(bool checked);