Bugfix: Working on SDR RX

This commit is contained in:
Logan Cusano
2022-01-04 00:15:11 -05:00
parent d050ee877a
commit 3fb2ba34a2

View File

@@ -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