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

Added basic variable decimation

This commit is contained in:
f4exb
2015-05-09 16:44:26 +02:00
parent f07934cc80
commit 7ea41283e8
7 changed files with 131 additions and 4 deletions
@@ -129,6 +129,15 @@ void RTLSDRGui::on_centerFrequency_changed(quint64 value)
sendSettings();
}
void RTLSDRGui::on_decim_valueChanged(int value)
{
if ((value <0) || (value > 4))
return;
ui->decimText->setText(tr("%1").arg(1<<value));
m_settings.m_log2Decim = value;
sendSettings();
}
void RTLSDRGui::on_ppm_valueChanged(int value)
{
if((value > 99) || (value < -99))