Skip to content

Commit c907c76

Browse files
authored
Merge pull request #1020 from darksidelemm/testing
v1.8.2-beta5 - Use inverted soft-in for RD91, tweak RS41 demod parameters.
2 parents c3d4c25 + 086cd04 commit c907c76

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

auto_rx/autorx/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# MINOR - New sonde type support, other fairly big changes that may result in telemetry or config file incompatability issus.
1313
# PATCH - Small changes, or minor feature additions.
1414

15-
__version__ = "1.8.2-beta4"
15+
__version__ = "1.8.2-beta5"
1616

1717
# Global Variables
1818

auto_rx/autorx/decode.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -885,9 +885,9 @@ def generate_decoder_command_experimental(self):
885885
if self.save_decode_iq:
886886
demod_cmd += f" tee {self.save_decode_iq_path} |"
887887

888-
# Use a 4800 Hz mask estimator to better avoid adjacent sonde issues.
889-
# Also seems to give a small performance bump.
890-
demod_cmd += "./fsk_demod --cs16 -b %d -u %d -s --mask 4800 --stats=%d 2 %d %d - -" % (
888+
# Updated 2025-08-26 to bump mask estimator to 5000 Hz, increase timing estimator duration, and change oversampling rate
889+
# From controlled testing this seems to improve weak signal performance.
890+
demod_cmd += "./fsk_demod --cs16 -b %d -u %d -s --mask 5000 --nsym=300 -p 5 --stats=%d 2 %d %d - -" % (
891891
_lower,
892892
_upper,
893893
_stats_rate,
@@ -1015,7 +1015,7 @@ def generate_decoder_command_experimental(self):
10151015
)
10161016

10171017
decode_cmd = (
1018-
"./rd94rd41drop --json --softin 2>/dev/null"
1018+
"./rd94rd41drop --json --softinv 2>/dev/null"
10191019
)
10201020

10211021
# RD94/RD41s transmit continuously - average over the last 2 frames, and use a mean

0 commit comments

Comments
 (0)