From 9e9d00f84894aef09372c68806e50870efce5cf0 Mon Sep 17 00:00:00 2001 From: DJ2LS <75909252+DJ2LS@users.noreply.github.com> Date: Sun, 15 Aug 2021 12:44:32 +0200 Subject: [PATCH] wait before sending frame ack --- tnc/data_handler.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tnc/data_handler.py b/tnc/data_handler.py index 093ccb96..51f38ae0 100644 --- a/tnc/data_handler.py +++ b/tnc/data_handler.py @@ -209,6 +209,7 @@ def arq_data_received(data_in): #time.sleep(0.5) # 0.5 logging.info("ARQ | TX | ARQ DATA FRAME ACK [" + str(static.FRAME_CRC.hex()) + "] [SNR:" + str(static.SNR) + "]") + helpers.wait(1) modem.transmit_signalling(ack_frame, 1) while static.CHANNEL_STATE == 'SENDING_SIGNALLING':