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

Support for Airspy: allow decimation by 64

This commit is contained in:
f4exb
2015-09-11 08:43:59 +02:00
parent 6e24ed6c28
commit 0b7a8c8cdb
4 changed files with 160 additions and 8 deletions
+1 -1
View File
@@ -209,7 +209,7 @@ void AirspyGui::on_biasT_stateChanged(int state)
void AirspyGui::on_decim_valueChanged(int value)
{
if ((value <0) || (value > 5))
if ((value <0) || (value > 6))
return;
ui->decimText->setText(tr("%1").arg(1<<value));
m_settings.m_log2Decim = value;