fixed ARQ_TX_N_TOTAL_ARQ_FRAMES

This commit is contained in:
DJ2LS 2021-08-23 18:53:22 +02:00 committed by GitHub
parent 0045ec3107
commit 425076402a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -330,7 +330,7 @@ class RF():
arqframe = frame_type + \
bytes([static.ARQ_TX_N_FRAMES_PER_BURST]) + \
static.ARQ_TX_N_CURRENT_ARQ_FRAME + \
static.n_total_arq_frame.to_bytes(2, byteorder='big') + \
n_total_arq_frame.to_bytes(2, byteorder='big') + \
static.DXCALLSIGN_CRC8 + \
static.MYCALLSIGN_CRC8 + \
payload_data
@ -373,7 +373,7 @@ class RF():
arqframe = frame_type + \
bytes([static.ARQ_TX_N_FRAMES_PER_BURST]) + \
static.ARQ_TX_N_CURRENT_ARQ_FRAME + \
static.n_total_arq_frame.to_bytes(2, byteorder='big') + \
n_total_arq_frame.to_bytes(2, byteorder='big') + \
static.DXCALLSIGN_CRC8 + \
static.MYCALLSIGN_CRC8 + \
payload_data