mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-15 12:51:49 -05:00
RTL-SDR input: fixed sample rate slider range and add one more sample rate
This commit is contained in:
parent
8f0af54fa0
commit
144462d57b
@ -273,8 +273,8 @@ void RTLSDRGui::on_checkBox_stateChanged(int state)
|
|||||||
sendSettings();
|
sendSettings();
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned int RTLSDRSampleRates::m_rates[] = {250, 1000, 1152, 1536, 2304, 2400};
|
unsigned int RTLSDRSampleRates::m_rates[] = {250, 1000, 1152, 1200, 1536, 2304, 2400};
|
||||||
unsigned int RTLSDRSampleRates::m_nb_rates = 6;
|
unsigned int RTLSDRSampleRates::m_nb_rates = 7;
|
||||||
|
|
||||||
unsigned int RTLSDRSampleRates::getRate(unsigned int rate_index)
|
unsigned int RTLSDRSampleRates::getRate(unsigned int rate_index)
|
||||||
{
|
{
|
||||||
|
@ -61,7 +61,7 @@ public:
|
|||||||
static unsigned int getRate(unsigned int rate_index);
|
static unsigned int getRate(unsigned int rate_index);
|
||||||
static unsigned int getRateIndex(unsigned int rate);
|
static unsigned int getRateIndex(unsigned int rate);
|
||||||
private:
|
private:
|
||||||
static unsigned int m_rates[6];
|
static unsigned int m_rates[7];
|
||||||
static unsigned int m_nb_rates;
|
static unsigned int m_nb_rates;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -204,7 +204,7 @@
|
|||||||
<string>Device Samplerate</string>
|
<string>Device Samplerate</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="maximum">
|
<property name="maximum">
|
||||||
<number>4</number>
|
<number>6</number>
|
||||||
</property>
|
</property>
|
||||||
<property name="pageStep">
|
<property name="pageStep">
|
||||||
<number>1</number>
|
<number>1</number>
|
||||||
|
Loading…
Reference in New Issue
Block a user