File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments