1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-02 22:14:45 -04:00

Tx ph.2: UpChannelizer: allow any sample rate

This commit is contained in:
f4exb
2016-10-30 22:01:20 +01:00
parent 34bf0c4c61
commit f5bbbb7cab
4 changed files with 40 additions and 15 deletions
+2 -2
View File
@@ -327,8 +327,8 @@ void FileSinkGui::tick()
}
}
unsigned int FileSinkSampleRates::m_rates[] = {32, 48, 64, 72, 128};
unsigned int FileSinkSampleRates::m_nb_rates = 5;
unsigned int FileSinkSampleRates::m_rates[] = {32, 48, 64, 72, 128, 192, 256, 300, 512, 1000};
unsigned int FileSinkSampleRates::m_nb_rates = 10;
unsigned int FileSinkSampleRates::getRate(unsigned int rate_index)
{