Add iMS-100 and RS-11G (#89)

Co-authored-by: Mark Jessop <darkside@Marks-MacBook-Pro.local>
This commit is contained in:
Mark Jessop 2022-12-26 16:53:56 +10:30 committed by GitHub
parent be754bb13e
commit 4e7878c7ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -254,7 +254,7 @@ def telemetry_filter(telemetry):
# Check Meisei sonde callsigns for validity.
# meisei_ims returns a callsign of IMS100-xxxxxx until it receives the serial number, so we filter based on the x's being present or not.
if "IMS100" in telemetry["type"] or "RS11G" in telemetry["type"]:
if "IMS100" in telemetry["type"] or "RS11G" in telemetry["type"] or "iMS-100" in telemetry["type"] or "RS-11G" in telemetry["type"]:
meisei_callsign_valid = "x" not in _serial
else:
meisei_callsign_valid = False