Bugfix: Working on SDR RX

This commit is contained in:
Logan Cusano
2022-01-04 00:48:48 -05:00
parent b2fca67428
commit 2e3f25cb4c

View File

@@ -20,7 +20,7 @@ class GQRXHandler():
tel_conn = self.create_telnet_connection()
print(f"Changing freq to {freq}")
tel_conn.write(bytes(f"F {int(freq)}", 'utf-8'))
sleep(.2)
sleep(1)
tel_conn.close()
@@ -30,7 +30,7 @@ class GQRXHandler():
squelch = float(-abs(squelch))
print(f"Changing squelch to {squelch}")
tel_conn.write(bytes(f"L SQL {float(squelch)}", 'utf-8'))
sleep(.2)
sleep(1)
tel_conn.close()
@@ -38,7 +38,7 @@ class GQRXHandler():
tel_conn = self.create_telnet_connection()
print(f"Changing mode to {mode}")
tel_conn.write(bytes(f"M {str(mode)}", 'utf-8'))
sleep(.2)
sleep(1)
tel_conn.close()