Bugfix: Working on SDR RX

This commit is contained in:
Logan Cusano
2022-01-04 00:24:09 -05:00
parent 3fb2ba34a2
commit a0e05d0360

View File

@@ -10,6 +10,7 @@ class GQRXHandler():
def create_telnet_connection(self):
print("Creating connection")
tel_conn = Telnet(self.hostname, self.port)
tel_conn.open(self.hostname, self.port)
print(tel_conn)
print(tel_conn.read_until(b"Escape character is '^]'.", timeout=15))