mirror of
https://github.com/brmlab/osmo-tetra.git
synced 2025-06-08 01:45:04 +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,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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue