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

Implemented rtl-sdr ppm LO correction

This commit is contained in:
f4exb
2015-05-09 00:54:01 +02:00
parent bce4aff21d
commit 31fb81c66a
5 changed files with 74 additions and 2 deletions
@@ -129,6 +129,15 @@ void RTLSDRGui::on_centerFrequency_changed(quint64 value)
sendSettings();
}
void RTLSDRGui::on_ppm_valueChanged(int value)
{
if((value > 99) || (value < -99))
return;
ui->ppmText->setText(tr("%1").arg(value));
m_settings.m_loPpmCorrection = value;
sendSettings();
}
void RTLSDRGui::on_gain_valueChanged(int value)
{
if(value > (int)m_gains.size())