Merge pull request #87 from Flyer350/patch-5

Fix comments in uplink.py
This commit is contained in:
Junzi Sun 2020-12-02 11:38:14 +01:00 committed by GitHub
commit 47de4d1163
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -34,12 +34,8 @@ def bds(msg):
mbytes = list(map(common.bin2int, msgbin_split)) mbytes = list(map(common.bin2int, msgbin_split))
if uf(msg) in {4, 5, 20, 21}: if uf(msg) in {4, 5, 20, 21}:
# Decode the SI or II interrogator code
# Decode the DI and get the lockout information di = mbytes[1] & 0x7 # DI - Designator Identification
# conveniently (LSS or LOS)
# DI - Designator Identification
di = mbytes[1] & 0x7
RR = mbytes[1] >> 3 & 0x1F RR = mbytes[1] >> 3 & 0x1F
if RR > 15: if RR > 15:
BDS1 = RR - 16 BDS1 = RR - 16
@ -50,7 +46,7 @@ def bds(msg):
RRS = ((mbytes[2] & 0x1) << 4) | ((mbytes[3] & 0xE0) >> 5) RRS = ((mbytes[2] & 0x1) << 4) | ((mbytes[3] & 0xE0) >> 5)
BDS2 = RRS BDS2 = RRS
else: else:
BDS2 = 0 BDS2 = 0 # for other values of DI, the BDS2 is assumed 0 (as per ICAO Annex 10 Vol IV)
return str(BDS1) + str(BDS2) return str(BDS1) + str(BDS2)
else: else:
@ -161,13 +157,15 @@ def uplink_fields(msg):
BDS1 = "" BDS1 = ""
BDS2 = "" BDS2 = ""
if uf(msg) == 11: if uf(msg) == 11:
# Decode the SI or II interrogator code
# Get cl and ic bit fields from the data
# Probability of Reply decoding # Probability of Reply decoding
PR = ((mbytes[0] & 0x7) << 1) | ((mbytes[1] & 0x80) >> 7) PR = ((mbytes[0] & 0x7) << 1) | ((mbytes[1] & 0x80) >> 7)
# Get cl and ic bit fields from the data
# Decode the SI or II interrogator code
codeLabel = mbytes[1] & 0x7 codeLabel = mbytes[1] & 0x7
icField = (mbytes[1] >> 3) & 0xF icField = (mbytes[1] >> 3) & 0xF
@ -182,9 +180,7 @@ def uplink_fields(msg):
IC = ic_switcher.get(codeLabel, "") IC = ic_switcher.get(codeLabel, "")
if uf(msg) in {4, 5, 20, 21}: if uf(msg) in {4, 5, 20, 21}:
# Decode the SI or II interrogator code # Decode the DI and get the lockout information conveniently (LSS or LOS)
# Decode the DI and get the lockout information
# conveniently (LSS or LOS)
# DI - Designator Identification # DI - Designator Identification
di = mbytes[1] & 0x7 di = mbytes[1] & 0x7