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.
This commit is contained in:
Corey Shields 2017-05-01 20:03:29 -04:00
parent ebceaafd86
commit 6841dd5ae6
1 changed files with 1 additions and 1 deletions

View File

@ -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'} }