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

RTL-SDR: increase LO ppm range to +/-200

This commit is contained in:
f4exb
2021-02-23 06:56:26 +01:00
parent bf62693093
commit 262a75beec
2 changed files with 10 additions and 7 deletions
+1 -1
View File
@@ -342,7 +342,7 @@ void RTLSDRGui::on_fcPos_currentIndexChanged(int index)
void RTLSDRGui::on_ppm_valueChanged(int value)
{
if ((value > 99) || (value < -99))
if ((value > 200) || (value < -200))
{
return;
}