fix first decimation value for FCD devices

thanks to Stefan Mandl for bringing up this issue.
This commit is contained in:
Dimitri Stolnikov 2012-11-11 14:11:53 +01:00
parent 2ee4b4ad4d
commit 1594e170bc

View file

@ -62,6 +62,9 @@ class top_block(grc_wxgui.top_block_gui):
options.low_pass = options.low_pass / 2.0 options.low_pass = options.low_pass / 2.0
if sample_rate == 96000: # FunCube Dongle
first_decim = 2
else:
first_decim = 10 first_decim = 10
self.offset = 0 self.offset = 0