kopia lustrzana https://github.com/projecthorus/radiosonde_auto_rx
Updates prior to merging into master
rodzic
6c2c12b509
commit
1aff59699a
|
|
@ -29,6 +29,7 @@ Currently we support the following radiosonde types:
|
|||
* Intermet iMet-54
|
||||
* Lockheed Martin LMS6 (400 MHz and 1680 MHz variants, including the new 'LMS-X' unreleased type)
|
||||
* Meisei iMS-100
|
||||
* Meteo-Radiy MRZ (400 MHz versions)
|
||||
|
||||
Support for other radiosondes may be added as required (please send us
|
||||
sondes to test with!)
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||

|
||||

|
||||
# Automatic Radiosonde Receiver Utilities
|
||||
|
||||
**Please refer to the [auto_rx wiki](https://github.com/projecthorus/radiosonde_auto_rx/wiki) for the latest information.**
|
||||
|
|
@ -29,6 +29,7 @@ Currently we support the following radiosonde types:
|
|||
* Intermet iMet-54
|
||||
* Lockheed Martin LMS6 (400 MHz and 1680 MHz variants, including the new 'LMS-X' unreleased type)
|
||||
* Meisei iMS-100
|
||||
* Meteo-Radiy MRZ (400 MHz versions)
|
||||
|
||||
Support for other radiosondes may be added as required (please send us
|
||||
sondes to test with!)
|
||||
|
|
@ -60,17 +61,17 @@ instructions](https://github.com/projecthorus/radiosonde_auto_rx/wiki).
|
|||
regularly](https://github.com/projecthorus/radiosonde_auto_rx/wiki/Performing-Updates)
|
||||
to get bug-fixes and improvements!**
|
||||
|
||||
### Contacts
|
||||
* [Mark Jessop](https://github.com/darksidelemm) - vk5qi@rfhead.net
|
||||
* [Michaela Wheeler](https://github.com/TheSkorm) - radiosonde@michaela.lgbt
|
||||
|
||||
You can often find us in the #highaltitude IRC Channel on
|
||||
[Freenode](https://webchat.freenode.net/).
|
||||
|
||||
### Licensing Information
|
||||
All software within this repository is licensed under the GNU General Public License v3. Refer this repositories LICENSE file for the full license text.
|
||||
|
||||
Radiosonde telemetry data captured via this software and uploaded into the [Habitat](https://habitat.habhub.org/) and [Sondehub](https://sondehub.org/) Database systems is licensed under [Creative Commons BY-SA v2.0](https://creativecommons.org/licenses/by-sa/2.0/).
|
||||
Telemetry data uploaded into the APRS-IS network is generally considered to be released into the public domain.
|
||||
|
||||
By uploading data into these systems (by enabling the relevant uploaders within the `station.cfg` file) you as the user agree for your data to be made available under these licenses. Note that uploading to Sondehub and Habitat is enabled by default.
|
||||
By uploading data into these systems (by enabling the relevant uploaders within the `station.cfg` file) you as the user agree for your data to be made available under these licenses. Note that uploading to Sondehub and Habitat is enabled by default.
|
||||
|
||||
### Contacts
|
||||
* [Mark Jessop](https://github.com/darksidelemm) - vk5qi@rfhead.net
|
||||
* [Michaela Wheeler](https://github.com/TheSkorm) - radiosonde@michaela.lgbt
|
||||
|
||||
You can often find us in the #highaltitude IRC Channel on
|
||||
[Freenode](https://webchat.freenode.net/).
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@ except ImportError:
|
|||
# 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.4.1-beta19"
|
||||
__version__ = "1.5.0"
|
||||
|
||||
|
||||
# Global Variables
|
||||
|
|
|
|||
|
|
@ -378,7 +378,7 @@ def read_auto_rx_config(filename, no_sdr_test=False):
|
|||
)
|
||||
|
||||
# New demod tweaks - Added 2019-04-23
|
||||
# Default to all experimental decoders on.
|
||||
# Default to experimental decoders on for FSK/GFSK sondes...
|
||||
auto_rx_config["experimental_decoders"] = {
|
||||
"RS41": True,
|
||||
"RS92": True,
|
||||
|
|
@ -390,12 +390,10 @@ def read_auto_rx_config(filename, no_sdr_test=False):
|
|||
"LMS6": True,
|
||||
"MK2LMS": False,
|
||||
"MEISEI": False,
|
||||
"MRZ": False,
|
||||
"MRZ": False, # .... except for the MRZ, until we know it works.
|
||||
"UDP": False,
|
||||
}
|
||||
auto_rx_config["rs41_drift_tweak"] = config.getboolean(
|
||||
"advanced", "drift_tweak"
|
||||
)
|
||||
|
||||
auto_rx_config["decoder_spacing_limit"] = config.getint(
|
||||
"advanced", "decoder_spacing_limit"
|
||||
)
|
||||
|
|
@ -509,7 +507,7 @@ def read_auto_rx_config(filename, no_sdr_test=False):
|
|||
)
|
||||
except:
|
||||
logging.warning(
|
||||
"Config - Did not find sondehub_enabled setting, using default (enabled / 30 seconds)."
|
||||
"Config - Did not find sondehub_enabled setting, using default (enabled / 15 seconds)."
|
||||
)
|
||||
auto_rx_config["sondehub_enabled"] = True
|
||||
auto_rx_config["sondehub_upload_rate"] = 15
|
||||
|
|
|
|||
|
|
@ -447,12 +447,6 @@ sdr_power_path = rtl_power
|
|||
# DEMODULATOR / DECODER TWEAKS #
|
||||
################################
|
||||
|
||||
# RS41 / LMS6 Drift Tweak (Regular demod chain only)
|
||||
# This tweak adds a high-pass filter into the RS41 and LMS6 demod chains. This extends the frequency offset range
|
||||
# the demod chain can handle, with some performance penalty. This is only required when using RTLSDRs
|
||||
# with worse than 2-3 PPM drift, and doesn't need to be enabled for TCXO SDRs.
|
||||
drift_tweak = False
|
||||
|
||||
#
|
||||
# Alternate Decode Chains
|
||||
#
|
||||
|
|
@ -467,15 +461,14 @@ rs41_experimental = True
|
|||
rs92_experimental = True
|
||||
dfm_experimental = True
|
||||
m10_experimental = True
|
||||
imet54_experimental = True
|
||||
# 400 MHz LMS6 sondes decode best with the fsk_demod decode chain, so we use this by default.
|
||||
lms6-400_experimental = True
|
||||
imet54_experimental = True
|
||||
|
||||
# MRZ sondes have not yet been tested with the fsk_demod flowgraph in the wild.
|
||||
# If someone can confirm that this works, I'll set it to True by default!
|
||||
mrz_experimental = False
|
||||
|
||||
# Note: As iMet-4 sondes use AFSK, using fsk_demod does not give any advantage, so there is no experimental decoder for them.
|
||||
|
||||
# Note: As iMet-4 and IMS100 sondes use AFSK, using fsk_demod does not give any advantage, so there is no experimental decoder for them.
|
||||
|
||||
# Optimize 1680 MHz Scanning for RS92-NGP Sondes
|
||||
# This flag sets the use of IQ detection when scanning for 1680 MHz sondes, which allows RS92-NGP sondes
|
||||
|
|
|
|||
Ładowanie…
Reference in New Issue