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,7 +62,10 @@ class top_block(grc_wxgui.top_block_gui):
options.low_pass = options.low_pass / 2.0
first_decim = 10
if sample_rate == 96000: # FunCube Dongle
first_decim = 2
else:
first_decim = 10
self.offset = 0