FreeDATA/tnc/tci.py

143 lines
5.2 KiB
Python
Raw Normal View History

2023-02-14 21:02:30 +00:00
#!/usr/bin/env python3
2023-02-21 17:47:05 +00:00
2023-02-14 21:02:30 +00:00
import structlog
import threading
2023-02-21 10:57:14 +00:00
import websocket
from queues import AUDIO_TRANSMIT_QUEUE, AUDIO_RECEIVED_QUEUE
2023-02-14 21:02:30 +00:00
2023-02-21 19:24:51 +00:00
"""
trx:0,true;
trx:0,false;
2023-02-14 21:02:30 +00:00
2023-02-21 19:24:51 +00:00
"""
2023-02-14 21:02:30 +00:00
2023-02-21 10:57:14 +00:00
class TCI:
def __init__(self, hostname='127.0.0.1', port=50001):
# websocket.enableTrace(True)
self.log = structlog.get_logger("TCI")
2023-02-14 21:02:30 +00:00
2023-02-21 10:57:14 +00:00
self.audio_received_queue = AUDIO_RECEIVED_QUEUE
self.audio_transmit_queue = AUDIO_TRANSMIT_QUEUE
2023-02-14 21:02:30 +00:00
2023-02-21 11:03:47 +00:00
self.hostname = str(hostname)
self.port = str(port)
2023-02-14 21:02:30 +00:00
2023-02-21 10:57:14 +00:00
self.ws = ''
2023-02-14 21:02:30 +00:00
2023-02-21 10:57:14 +00:00
tci_thread = threading.Thread(
target=self.connect,
name="TCI THREAD",
daemon=True,
)
tci_thread.start()
2023-03-27 08:35:42 +00:00
# flag if we're receiving a tx_chrono
self.tx_chrono = False
2023-02-21 10:57:14 +00:00
def connect(self):
2023-02-21 11:03:47 +00:00
self.log.info(
"[TCI] Starting TCI thread!", ip=self.hostname, port=self.port
)
2023-02-21 20:10:18 +00:00
self.ws = websocket.WebSocketApp(
f"ws://{self.hostname}:{self.port}",
on_open=self.on_open,
on_message=self.on_message,
on_error=self.on_error,
on_close=self.on_close,
)
2023-02-21 10:57:14 +00:00
self.ws.run_forever(reconnect=5) # Set dispatcher to automatic reconnection, 5 second reconnect delay if con>
#rel.signal(2, rel.abort) # Keyboard Interrupt
#rel.dispatch()
def on_message(self, ws, message):
2023-03-27 08:35:42 +00:00
# ready message
# we need to wait until radio is ready before we can push commands
2023-02-21 10:57:14 +00:00
if message == "ready;":
self.ws.send('audio_samplerate:8000;')
self.ws.send('audio_stream_channels:1;')
2023-03-27 08:35:42 +00:00
self.ws.send('audio_stream_sample_type:int16;')
self.ws.send('audio_stream_samples:1200;')
2023-02-21 10:57:14 +00:00
self.ws.send('audio_start:0;')
2023-03-27 08:35:42 +00:00
# tx chrono frame
if len(message) in {64}:
type = int.from_bytes(message[24:28], "little")
if type == 3:
self.tx_chrono = True
# audio frame
2023-02-21 20:10:18 +00:00
if len(message) in {576, 2464, 4160}:
2023-02-21 10:57:14 +00:00
# audio received
receiver = message[:4]
sample_rate = int.from_bytes(message[4:8], "little")
format = int.from_bytes(message[8:12], "little")
2023-02-21 17:47:05 +00:00
codec = int.from_bytes(message[12:16], "little")
crc = int.from_bytes(message[16:20], "little")
2023-02-21 10:57:14 +00:00
audio_length = int.from_bytes(message[20:24], "little")
type = int.from_bytes(message[24:28], "little")
channel = int.from_bytes(message[28:32], "little")
2023-02-21 17:47:05 +00:00
reserved1 = int.from_bytes(message[32:36], "little")
reserved2 = int.from_bytes(message[36:40], "little")
reserved3 = int.from_bytes(message[40:44], "little")
reserved4 = int.from_bytes(message[44:48], "little")
reserved5 = int.from_bytes(message[48:52], "little")
reserved6 = int.from_bytes(message[52:56], "little")
reserved7 = int.from_bytes(message[56:60], "little")
reserved8 = int.from_bytes(message[60:64], "little")
audio_data = message[64:]
2023-02-21 10:57:14 +00:00
self.audio_received_queue.put(audio_data)
def on_error(self, error):
self.log.error(
"[TCI] Error FreeDATA to TCI rig!", ip=self.hostname, port=self.port, e=error
)
2023-02-14 21:02:30 +00:00
2023-02-21 10:57:14 +00:00
def on_close(self, ws, close_status_code, close_msg):
self.log.warning(
"[TCI] Closed FreeDATA to TCI connection!", ip=self.hostname, port=self.port, statu=close_status_code, msg=close_msg
)
2023-02-14 21:02:30 +00:00
2023-02-21 10:57:14 +00:00
def on_open(self, ws):
2023-03-27 08:48:14 +00:00
self.ws = ws
2023-02-21 10:57:14 +00:00
self.log.info(
"[TCI] Connected FreeDATA to TCI rig!", ip=self.hostname, port=self.port
)
2023-02-14 21:02:30 +00:00
2023-02-21 10:57:14 +00:00
self.log.info(
"[TCI] Init...", ip=self.hostname, port=self.port
2023-02-14 21:02:30 +00:00
)
2023-03-27 08:48:14 +00:00
def push_audio(self, data_out):
audio = bytearray(4096 + 64)
"""
# audio[:4] = receiver.to_bytes(4,byteorder='little', signed=False)
audio[4:8] = sample_rate.to_bytes(4, byteorder='little', signed=False)
audio[8:12] = format.to_bytes(4, byteorder='little', signed=False)
audio[12:16] = codec.to_bytes(4, byteorder='little', signed=False)
audio[16:20] = crc.to_bytes(4, byteorder='little', signed=False)
audio[20:24] = audio_length.to_bytes(4, byteorder='little', signed=False)
audio[24:28] = int(2).to_bytes(4, byteorder='little', signed=True)
audio[28:32] = channel.to_bytes(4, byteorder='little', signed=False)
audio[32:36] = reserved1.to_bytes(4, byteorder='little', signed=False)
audio[36:40] = reserved2.to_bytes(4, byteorder='little', signed=False)
audio[40:44] = reserved3.to_bytes(4, byteorder='little', signed=False)
audio[44:48] = reserved4.to_bytes(4, byteorder='little', signed=False)
audio[48:52] = reserved5.to_bytes(4, byteorder='little', signed=False)
audio[52:56] = reserved6.to_bytes(4, byteorder='little', signed=False)
audio[56:60] = reserved7.to_bytes(4, byteorder='little', signed=False)
audio[60:64] = reserved8.to_bytes(4, byteorder='little', signed=False)
"""
self.ws.send(audio, websocket.ABNF.OPCODE_BINARY)
def set_ptt(self, state):
if state:
self.ws.send('trx:0,true,tci;')
else:
self.ws.send('trx:0,false;')