From 3fb2ba34a28be1e68d9b7d0ece50afbeb79f2817 Mon Sep 17 00:00:00 2001 From: Logan Cusano Date: Tue, 4 Jan 2022 00:15:11 -0500 Subject: [PATCH] Bugfix: Working on SDR RX --- gqrxHandler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gqrxHandler.py b/gqrxHandler.py index a803426..c625f0a 100644 --- a/gqrxHandler.py +++ b/gqrxHandler.py @@ -11,7 +11,7 @@ class GQRXHandler(): print("Creating connection") tel_conn = Telnet(self.hostname, self.port) print(tel_conn) - tel_conn.read_until(b"Escape character is '^]'.") + print(tel_conn.read_until(b"Escape character is '^]'.", timeout=15)) return tel_conn