RTL-SDR: Adjust BW range limits

0 is so automatic mode, so allow to set that
This commit is contained in:
Kacper Michajłow 2021-01-31 17:20:46 +01:00
parent 45ea4ed243
commit daacc6a15d
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ RTLSDRGui::RTLSDRGui(DeviceUISet *deviceUISet, QWidget* parent) :
ui->sampleRate->setColorMapper(ColorMapper(ColorMapper::GrayGreenYellow));
ui->rfBW->setColorMapper(ColorMapper(ColorMapper::GrayYellow));
ui->rfBW->setValueRange(4, 350, 8000);
ui->rfBW->setValueRange(4, 0, 10000);
connect(&m_updateTimer, SIGNAL(timeout()), this, SLOT(updateHardware()));
connect(&m_statusTimer, SIGNAL(timeout()), this, SLOT(updateStatus()));