1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-11-26 17:58:43 -05:00

RTL-SDR plugin: New 2000 kS/s rate

This commit is contained in:
f4exb 2016-03-31 19:49:32 +02:00
parent 007aaaf749
commit 58656fe65c
2 changed files with 3 additions and 3 deletions

View File

@ -277,8 +277,8 @@ void RTLSDRGui::on_checkBox_stateChanged(int state)
sendSettings();
}
unsigned int RTLSDRSampleRates::m_rates[] = {250, 1000, 1152, 1200, 1536, 2304, 2400};
unsigned int RTLSDRSampleRates::m_nb_rates = 7;
unsigned int RTLSDRSampleRates::m_rates[] = {250, 1000, 1152, 1200, 1536, 2000, 2304, 2400};
unsigned int RTLSDRSampleRates::m_nb_rates = 8;
unsigned int RTLSDRSampleRates::getRate(unsigned int rate_index)
{

View File

@ -62,7 +62,7 @@ public:
static unsigned int getRateIndex(unsigned int rate);
static unsigned int getNbRates();
private:
static unsigned int m_rates[7];
static unsigned int m_rates[8];
static unsigned int m_nb_rates;
};