1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-08-13 23:13:49 -04:00

Add 128 and 256 decimation for AirspyHF

This commit is contained in:
Jon Beniston
2021-02-01 16:40:23 +00:00
parent 91f0794822
commit 43d71251bf
5 changed files with 874 additions and 7 deletions
@@ -292,7 +292,7 @@ void AirspyHFGui::on_sampleRate_currentIndexChanged(int index)
void AirspyHFGui::on_decim_currentIndexChanged(int index)
{
if ((index < 0) || (index > 6))
if ((index < 0) || (index > 8))
return;
m_settings.m_log2Decim = index;
sendSettings();