1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-17 21:28:43 -04:00

Airspy HF+: allow decimation by 64

This commit is contained in:
f4exb
2018-03-27 01:43:04 +02:00
parent 6887a7d61e
commit ef69dd22fa
2 changed files with 7 additions and 11 deletions
@@ -284,7 +284,7 @@ void AirspyHFGui::on_sampleRate_currentIndexChanged(int index)
void AirspyHFGui::on_decim_currentIndexChanged(int index)
{
if ((index < 0) || (index > 5))
if ((index < 0) || (index > 6))
return;
m_settings.m_log2Decim = index;
sendSettings();