From 6841dd5ae66a595dac344313924ea0ccadda4ea2 Mon Sep 17 00:00:00 2001 From: Corey Shields Date: Mon, 1 May 2017 20:03:29 -0400 Subject: [PATCH] fix rtlsdr sample rate for rpi 1.5e6 is too high and causes timing clips in the raspberry pi. 1e6 was tested successully today and eliminates the clips. --- python/hw_settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/hw_settings.py b/python/hw_settings.py index e0a7d98..5f2c7fe 100644 --- a/python/hw_settings.py +++ b/python/hw_settings.py @@ -46,5 +46,5 @@ hw_rx_settings = {'usrpb200' : {'rf_gain' : 50.0, 'if_gain' : 0.0, 'bb_gain' : 20.0, 'samp_rate' : 8e6, 'antenna' : '', 'dev_arg': 'hackrf'}, 'rtlsdr' : {'rf_gain' : 32.8, 'if_gain' : 0.0, - 'bb_gain' : 0.0, 'samp_rate' : 1.5e6, + 'bb_gain' : 0.0, 'samp_rate' : 1e6, 'antenna' : '', 'dev_arg' : 'rtl'} }