implement wsprnet reporting, refs #62

This commit is contained in:
Jakob Ketterl
2021-01-14 22:54:59 +01:00
parent 132bd2b445
commit e3aa3fa4c6
3 changed files with 82 additions and 2 deletions

View File

@ -273,4 +273,4 @@ class WsprDecoder(Decoder):
m = WsprDecoder.wspr_splitter_pattern.match(msg)
if m is None:
return {}
return {"callsign": m.group(1), "locator": m.group(2)}
return {"callsign": m.group(1), "locator": m.group(2), "dbm": m.group(3)}