From 917797789c16713168b5475f6eca099c3342e5c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?TC=C2=B2?= <130875305+TheCommsChannel@users.noreply.github.com> Date: Fri, 17 Jan 2025 07:42:15 -0500 Subject: [PATCH] Slight delay to ack Added slight delay to ack now that acks are being requested due to the Message ID addition towork around apps and duplicate messages --- aprs_comm.py | 1 + 1 file changed, 1 insertion(+) diff --git a/aprs_comm.py b/aprs_comm.py index ffeca54..bb3886d 100644 --- a/aprs_comm.py +++ b/aprs_comm.py @@ -84,6 +84,7 @@ def send_ack(ki, aprs_frame): info=ack_info, ) ki.write(frame) + time.sleep(0.3) # delay to ensure ack is sent except Exception as e: print(f"Failed to send ACK: {e}")