Merge pull request #282 from darksidelemm/testing

Remove M20 from valid sonde types until we have a decoder.
pull/291/head
Mark Jessop 2020-06-25 07:33:39 +09:30 zatwierdzone przez GitHub
commit e97143ff87
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
3 zmienionych plików z 5 dodań i 4 usunięć

Wyświetl plik

@ -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.3.2-beta5"
__version__ = "1.3.2-beta6"
# Global Variables

Wyświetl plik

@ -286,7 +286,8 @@ def read_auto_rx_config(filename, no_sdr_test=False):
'RS41': True,
'RS92': True,
'DFM': True,
'M10': True,
'M10': True,
'M20': True,
'IMET': False,
'LMS6': True,
'MK2LMS': False,

Wyświetl plik

@ -21,7 +21,7 @@ from .sonde_specific import *
from .fsk_demod import FSKDemodStats
# Global valid sonde types list.
VALID_SONDE_TYPES = ['RS92', 'RS41', 'DFM', 'M10', 'M20', 'IMET', 'LMSX', 'MK2LMS', 'LMS6', 'MEISEI', 'UDP']
VALID_SONDE_TYPES = ['RS92', 'RS41', 'DFM', 'M10', 'IMET', 'MK2LMS', 'LMS6', 'MEISEI', 'UDP']
# Known 'Drifty' Radiosonde types
# NOTE: Due to observed adjacent channel detections of RS41s, the adjacent channel decoder restriction
@ -70,7 +70,7 @@ class SondeDecoder(object):
}
# TODO: Use the global valid sonde type list.
VALID_SONDE_TYPES = ['RS92', 'RS41', 'DFM', 'M10', 'M20', 'IMET', 'LMSX', 'MK2LMS', 'LMS6', 'MEISEI', 'UDP']
VALID_SONDE_TYPES = ['RS92', 'RS41', 'DFM', 'M10', 'IMET', 'MK2LMS', 'LMS6', 'MEISEI', 'UDP']
def __init__(self,
sonde_type="None",