1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-05 15:34:57 -04:00

HackRF output: implemented baseband or device sample rate input option

This commit is contained in:
f4exb
2019-04-13 21:33:17 +02:00
parent 457c873365
commit 1860d20220
3 changed files with 79 additions and 10 deletions
@@ -68,6 +68,7 @@ private:
DeviceUISet* m_deviceUISet;
bool m_forceSettings;
HackRFOutputSettings m_settings;
bool m_sampleRateMode; //!< true: device, false: base band sample rate update mode
QTimer m_updateTimer;
QTimer m_statusTimer;
DeviceSampleSink* m_deviceSampleSink;
@@ -78,6 +79,7 @@ private:
bool m_doApplySettings;
void displaySettings();
void displaySampleRate();
void displayBandwidths();
void sendSettings();
void updateSampleRateAndFrequency();
@@ -95,6 +97,7 @@ private slots:
void on_bbFilter_currentIndexChanged(int index);
void on_txvga_valueChanged(int value);
void on_startStop_toggled(bool checked);
void on_sampleRateMode_toggled(bool checked);
void updateHardware();
void updateStatus();
void openDeviceSettingsDialog(const QPoint& p);