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

Added a decimation by 32 for BladeRF plugin

This commit is contained in:
f4exb
2015-06-07 11:26:23 +02:00
parent 1c7ea3dfb3
commit 833890a1ea
4 changed files with 45 additions and 2 deletions
+1 -1
View File
@@ -156,7 +156,7 @@ void BladerfGui::on_bandwidth_valueChanged(int value)
void BladerfGui::on_decim_valueChanged(int value)
{
if ((value <0) || (value > 4))
if ((value <0) || (value > 5))
return;
ui->decimText->setText(tr("%1").arg(1<<value));
m_settings.m_log2Decim = value;