From b681755308a1580a44033a30f087d33c469564b5 Mon Sep 17 00:00:00 2001 From: Mashintime Date: Mon, 20 Mar 2023 17:02:52 -0400 Subject: [PATCH] Fix Issue #373 --- tnc/rigctld.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tnc/rigctld.py b/tnc/rigctld.py index 6613379d..a6800087 100644 --- a/tnc/rigctld.py +++ b/tnc/rigctld.py @@ -159,7 +159,8 @@ class radio: """ if self.data_connected: self.data_connection.setblocking(False) - self.data_connection.settimeout(0.05) + #Allow a little more time for a response from rigctld before generating a timeout, seems to have no ill effects on a well behaving setup and fixes Issue #373 + self.data_connection.settimeout(0.30) try: self.data_connection.sendall(command + b"\n")