Skip to content

Commit

Permalink
Merge pull request #883 from darksidelemm/testing
Browse files Browse the repository at this point in the history
Fix WXR301-PN9 baud rate
  • Loading branch information
darksidelemm authored May 31, 2024
2 parents 63b2257 + 9021501 commit dd8a658
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion auto_rx/autorx/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# MINOR - New sonde type support, other fairly big changes that may result in telemetry or config file incompatability issus.
# PATCH - Small changes, or minor feature additions.

__version__ = "1.7.3-beta12"
__version__ = "1.7.3-beta13"


# Global Variables
Expand Down
4 changes: 2 additions & 2 deletions auto_rx/autorx/decode.py
Original file line number Diff line number Diff line change
Expand Up @@ -1342,8 +1342,8 @@ def generate_decoder_command_experimental(self):
elif self.sonde_type == "WXRPN9":
# Weathex WxR-301D Sonde, PN9 variant

_baud_rate = 4800
_sample_rate = 96000
_baud_rate = 5000
_sample_rate = 100000

# Limit FSK estimator window to roughly +/- 40 kHz
_lower = -40000
Expand Down

0 comments on commit dd8a658

Please sign in to comment.