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

RTL-SDR source plugin: added 256k and 1600k sample rates

This commit is contained in:
f4exb
2016-05-03 02:14:41 +02:00
parent 71de778e7c
commit 33b7177445
3 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -277,8 +277,8 @@ void RTLSDRGui::on_checkBox_stateChanged(int state)
sendSettings();
}
unsigned int RTLSDRSampleRates::m_rates[] = {250, 1000, 1152, 1200, 1536, 2000, 2304, 2400};
unsigned int RTLSDRSampleRates::m_nb_rates = 8;
unsigned int RTLSDRSampleRates::m_rates[] = {250, 256, 1000, 1152, 1200, 1536, 1600, 2000, 2304, 2400};
unsigned int RTLSDRSampleRates::m_nb_rates = 10;
unsigned int RTLSDRSampleRates::getRate(unsigned int rate_index)
{