mirror of
https://github.com/brmlab/osmo-tetra.git
synced 2025-06-07 17:34:10 +02:00
fix first decimation value for FCD devices
thanks to Stefan Mandl for bringing up this issue.
This commit is contained in:
parent
2ee4b4ad4d
commit
1594e170bc
1 changed files with 4 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue