2020-12-23 16:48:54 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
|
|
Created on Wed Dec 23 07:04:24 2020
|
|
|
|
|
|
|
|
@author: DJ2LS
|
|
|
|
"""
|
2021-09-25 13:24:25 +00:00
|
|
|
import sys
|
2022-02-15 17:10:14 +00:00
|
|
|
import os
|
2020-12-23 16:48:54 +00:00
|
|
|
import ctypes
|
|
|
|
from ctypes import *
|
|
|
|
import pathlib
|
2021-11-18 18:40:22 +00:00
|
|
|
import logging, structlog, log_handler
|
2021-01-06 12:17:17 +00:00
|
|
|
import time
|
|
|
|
import threading
|
2021-09-10 16:56:33 +00:00
|
|
|
import atexit
|
2021-09-25 13:24:25 +00:00
|
|
|
import numpy as np
|
2021-01-06 12:17:17 +00:00
|
|
|
import helpers
|
2020-12-23 16:48:54 +00:00
|
|
|
import static
|
2021-02-24 13:22:28 +00:00
|
|
|
import data_handler
|
2022-02-02 20:12:16 +00:00
|
|
|
import ujson as json
|
|
|
|
import sock
|
2021-11-18 18:40:22 +00:00
|
|
|
import re
|
2021-12-20 14:38:43 +00:00
|
|
|
import queue
|
2021-12-19 18:45:08 +00:00
|
|
|
import codec2
|
2022-01-20 19:38:56 +00:00
|
|
|
import audio
|
2022-02-19 19:45:57 +00:00
|
|
|
|
2022-03-20 13:51:30 +00:00
|
|
|
|
2022-03-08 20:00:43 +00:00
|
|
|
from collections import deque
|
2021-07-10 21:27:33 +00:00
|
|
|
|
2021-08-06 20:09:16 +00:00
|
|
|
MODEM_STATS_NR_MAX = 320
|
|
|
|
MODEM_STATS_NC_MAX = 51
|
|
|
|
|
2022-03-20 13:51:30 +00:00
|
|
|
# modem stats structure
|
2021-08-06 20:09:16 +00:00
|
|
|
class MODEMSTATS(ctypes.Structure):
|
2022-03-04 15:50:32 +00:00
|
|
|
""" """
|
2021-09-25 13:24:25 +00:00
|
|
|
_fields_ = [
|
|
|
|
("Nc", ctypes.c_int),
|
|
|
|
("snr_est", ctypes.c_float),
|
|
|
|
("rx_symbols", (ctypes.c_float * MODEM_STATS_NR_MAX)*MODEM_STATS_NC_MAX),
|
|
|
|
("nr", ctypes.c_int),
|
|
|
|
("sync", ctypes.c_int),
|
|
|
|
("foff", ctypes.c_float),
|
|
|
|
("rx_timing", ctypes.c_float),
|
|
|
|
("clock_offset", ctypes.c_float),
|
|
|
|
("sync_metric", ctypes.c_float),
|
|
|
|
("pre", ctypes.c_int),
|
|
|
|
("post", ctypes.c_int),
|
|
|
|
("uw_fails", ctypes.c_int),
|
|
|
|
]
|
2021-08-06 20:09:16 +00:00
|
|
|
|
2022-03-20 13:51:30 +00:00
|
|
|
|
|
|
|
|
2022-01-07 10:25:28 +00:00
|
|
|
# init FIFO queue to store received frames in
|
|
|
|
MODEM_RECEIVED_QUEUE = queue.Queue()
|
|
|
|
MODEM_TRANSMIT_QUEUE = queue.Queue()
|
2022-01-07 11:55:03 +00:00
|
|
|
static.TRANSMITTING = False
|
2021-08-06 20:09:16 +00:00
|
|
|
|
2022-01-15 18:23:28 +00:00
|
|
|
# receive only specific modes to reduce cpu load
|
|
|
|
RECEIVE_DATAC1 = False
|
|
|
|
RECEIVE_DATAC3 = False
|
2022-03-20 13:51:30 +00:00
|
|
|
RECEIVE_FSK_LDPC_0 = False
|
2022-01-15 18:23:28 +00:00
|
|
|
|
2020-12-23 16:48:54 +00:00
|
|
|
class RF():
|
2022-03-04 15:50:32 +00:00
|
|
|
""" """
|
2021-03-12 13:14:36 +00:00
|
|
|
|
2021-09-25 13:24:25 +00:00
|
|
|
def __init__(self):
|
2022-02-02 20:12:16 +00:00
|
|
|
|
|
|
|
self.sampler_avg = 0
|
|
|
|
self.buffer_avg = 0
|
|
|
|
|
2022-02-15 17:10:14 +00:00
|
|
|
|
2021-10-03 14:31:34 +00:00
|
|
|
self.AUDIO_SAMPLE_RATE_RX = 48000
|
|
|
|
self.AUDIO_SAMPLE_RATE_TX = 48000
|
2021-12-19 19:31:53 +00:00
|
|
|
self.MODEM_SAMPLE_RATE = codec2.api.FREEDV_FS_8000
|
|
|
|
self.AUDIO_FRAMES_PER_BUFFER_RX = 2400*2 #8192
|
2022-01-07 10:25:28 +00:00
|
|
|
self.AUDIO_FRAMES_PER_BUFFER_TX = 2400*2 #8192 Lets to some tests with very small chunks for TX
|
2021-10-03 14:31:34 +00:00
|
|
|
self.AUDIO_CHUNKS = 48 #8 * (self.AUDIO_SAMPLE_RATE_RX/self.MODEM_SAMPLE_RATE) #48
|
|
|
|
self.AUDIO_CHANNELS = 1
|
|
|
|
|
2022-01-23 06:10:04 +00:00
|
|
|
# locking state for mod out so buffer will be filled before we can use it
|
|
|
|
# https://github.com/DJ2LS/FreeDATA/issues/127
|
|
|
|
# https://github.com/DJ2LS/FreeDATA/issues/99
|
|
|
|
self.mod_out_locked = True
|
|
|
|
|
2021-12-19 19:31:53 +00:00
|
|
|
# make sure our resampler will work
|
|
|
|
assert (self.AUDIO_SAMPLE_RATE_RX / self.MODEM_SAMPLE_RATE) == codec2.api.FDMDV_OS_48
|
|
|
|
|
2021-12-19 18:45:08 +00:00
|
|
|
# small hack for initializing codec2 via codec2.py module
|
|
|
|
# TODO: we need to change the entire modem module to integrate codec2 module
|
|
|
|
self.c_lib = codec2.api
|
2021-12-19 19:31:53 +00:00
|
|
|
self.resampler = codec2.resampler()
|
2021-12-19 18:45:08 +00:00
|
|
|
|
2022-01-07 10:25:28 +00:00
|
|
|
self.modem_transmit_queue = MODEM_TRANSMIT_QUEUE
|
|
|
|
self.modem_received_queue = MODEM_RECEIVED_QUEUE
|
2021-12-05 19:11:38 +00:00
|
|
|
|
2021-12-22 11:48:49 +00:00
|
|
|
# init FIFO queue to store modulation out in
|
2022-03-08 20:00:43 +00:00
|
|
|
self.modoutqueue = deque()
|
2021-12-22 11:48:49 +00:00
|
|
|
|
2021-12-26 14:43:47 +00:00
|
|
|
# define fft_data buffer
|
|
|
|
self.fft_data = bytes()
|
|
|
|
|
2021-12-20 14:38:43 +00:00
|
|
|
# open codec2 instance
|
|
|
|
self.datac0_freedv = cast(codec2.api.freedv_open(codec2.api.FREEDV_MODE_DATAC0), c_void_p)
|
2022-03-19 11:42:10 +00:00
|
|
|
self.c_lib.freedv_set_tuning_range(self.datac0_freedv, c_float(static.TUNING_RANGE_FMIN), c_float(static.TUNING_RANGE_FMAX))
|
2021-12-20 14:38:43 +00:00
|
|
|
self.datac0_bytes_per_frame = int(codec2.api.freedv_get_bits_per_modem_frame(self.datac0_freedv)/8)
|
2021-12-20 15:21:09 +00:00
|
|
|
self.datac0_payload_per_frame = self.datac0_bytes_per_frame -2
|
|
|
|
self.datac0_n_nom_modem_samples = self.c_lib.freedv_get_n_nom_modem_samples(self.datac0_freedv)
|
|
|
|
self.datac0_n_tx_modem_samples = self.c_lib.freedv_get_n_tx_modem_samples(self.datac0_freedv)
|
|
|
|
self.datac0_n_tx_preamble_modem_samples = self.c_lib.freedv_get_n_tx_preamble_modem_samples(self.datac0_freedv)
|
|
|
|
self.datac0_n_tx_postamble_modem_samples = self.c_lib.freedv_get_n_tx_postamble_modem_samples(self.datac0_freedv)
|
|
|
|
self.datac0_bytes_out = create_string_buffer(self.datac0_bytes_per_frame)
|
2021-12-20 14:38:43 +00:00
|
|
|
codec2.api.freedv_set_frames_per_burst(self.datac0_freedv,1)
|
|
|
|
self.datac0_buffer = codec2.audio_buffer(2*self.AUDIO_FRAMES_PER_BUFFER_RX)
|
|
|
|
|
|
|
|
self.datac1_freedv = cast(codec2.api.freedv_open(codec2.api.FREEDV_MODE_DATAC1), c_void_p)
|
2022-03-19 11:42:10 +00:00
|
|
|
self.c_lib.freedv_set_tuning_range(self.datac1_freedv, c_float(static.TUNING_RANGE_FMIN), c_float(static.TUNING_RANGE_FMAX))
|
2021-12-20 14:38:43 +00:00
|
|
|
self.datac1_bytes_per_frame = int(codec2.api.freedv_get_bits_per_modem_frame(self.datac1_freedv)/8)
|
2021-12-20 15:21:09 +00:00
|
|
|
self.datac1_bytes_out = create_string_buffer(self.datac1_bytes_per_frame)
|
2021-12-20 14:38:43 +00:00
|
|
|
codec2.api.freedv_set_frames_per_burst(self.datac1_freedv,1)
|
|
|
|
self.datac1_buffer = codec2.audio_buffer(2*self.AUDIO_FRAMES_PER_BUFFER_RX)
|
|
|
|
|
|
|
|
self.datac3_freedv = cast(codec2.api.freedv_open(codec2.api.FREEDV_MODE_DATAC3), c_void_p)
|
2022-03-19 11:42:10 +00:00
|
|
|
self.c_lib.freedv_set_tuning_range(self.datac3_freedv, c_float(static.TUNING_RANGE_FMIN), c_float(static.TUNING_RANGE_FMAX))
|
2021-12-20 14:38:43 +00:00
|
|
|
self.datac3_bytes_per_frame = int(codec2.api.freedv_get_bits_per_modem_frame(self.datac3_freedv)/8)
|
2021-12-20 15:21:09 +00:00
|
|
|
self.datac3_bytes_out = create_string_buffer(self.datac3_bytes_per_frame)
|
2021-12-20 14:38:43 +00:00
|
|
|
codec2.api.freedv_set_frames_per_burst(self.datac3_freedv,1)
|
|
|
|
self.datac3_buffer = codec2.audio_buffer(2*self.AUDIO_FRAMES_PER_BUFFER_RX)
|
|
|
|
|
2022-03-20 13:51:30 +00:00
|
|
|
|
|
|
|
self.fsk_ldpc_freedv = cast(codec2.api.freedv_open_advanced(9, ctypes.byref(codec2.api.FREEDV_MODE_FSK_LDPC_0_ADV)), c_void_p)
|
|
|
|
#self.fsk_ldpc_freedv = cast(codec2.api.freedv_open(codec2.api.FREEDV_MODE_FSK_LDPC), c_void_p)
|
2022-03-19 11:42:10 +00:00
|
|
|
self.fsk_ldpc_bytes_per_frame = int(codec2.api.freedv_get_bits_per_modem_frame(self.fsk_ldpc_freedv)/8)
|
|
|
|
self.fsk_ldpc_bytes_out = create_string_buffer(self.fsk_ldpc_bytes_per_frame)
|
2022-03-20 13:51:30 +00:00
|
|
|
#codec2.api.freedv_set_frames_per_burst(self.fsk_ldpc_freedv,1)
|
|
|
|
self.fsk_ldpc_buffer = codec2.audio_buffer(self.AUDIO_FRAMES_PER_BUFFER_RX)
|
2022-03-19 11:42:10 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2021-12-20 14:38:43 +00:00
|
|
|
# initial nin values
|
|
|
|
self.datac0_nin = codec2.api.freedv_nin(self.datac0_freedv)
|
|
|
|
self.datac1_nin = codec2.api.freedv_nin(self.datac1_freedv)
|
|
|
|
self.datac3_nin = codec2.api.freedv_nin(self.datac3_freedv)
|
2022-03-19 11:42:10 +00:00
|
|
|
self.fsk_ldpc_nin = codec2.api.freedv_nin(self.fsk_ldpc_freedv)
|
2021-12-20 14:38:43 +00:00
|
|
|
# --------------------------------------------CREATE PYAUDIO INSTANCE
|
2021-11-07 15:12:19 +00:00
|
|
|
try:
|
|
|
|
# we need to "try" this, because sometimes libasound.so isn't in the default place
|
|
|
|
# try to supress error messages
|
2022-01-20 19:38:56 +00:00
|
|
|
with audio.noalsaerr(): # https://github.com/DJ2LS/FreeDATA/issues/22
|
|
|
|
self.p = audio.pyaudio.PyAudio()
|
2021-11-07 15:12:19 +00:00
|
|
|
# else do it the default way
|
|
|
|
except:
|
2022-01-20 19:38:56 +00:00
|
|
|
self.p = audio.pyaudio.PyAudio()
|
2021-09-10 16:56:33 +00:00
|
|
|
atexit.register(self.p.terminate)
|
2022-02-15 17:10:14 +00:00
|
|
|
|
2021-12-20 14:38:43 +00:00
|
|
|
# --------------------------------------------OPEN RX AUDIO CHANNEL
|
2021-12-19 18:45:08 +00:00
|
|
|
# optional auto selection of loopback device if using in testmode
|
|
|
|
if static.AUDIO_INPUT_DEVICE == -2:
|
|
|
|
loopback_list = []
|
|
|
|
for dev in range(0,self.p.get_device_count()):
|
|
|
|
if 'Loopback: PCM' in self.p.get_device_info_by_index(dev)["name"]:
|
|
|
|
loopback_list.append(dev)
|
|
|
|
if len(loopback_list) >= 2:
|
2021-12-22 11:48:49 +00:00
|
|
|
static.AUDIO_INPUT_DEVICE = loopback_list[0] #0 = RX
|
|
|
|
static.AUDIO_OUTPUT_DEVICE = loopback_list[1] #1 = TX
|
2021-12-19 18:45:08 +00:00
|
|
|
print(f"loopback_list rx: {loopback_list}", file=sys.stderr)
|
2022-02-15 17:10:14 +00:00
|
|
|
|
|
|
|
try:
|
|
|
|
self.audio_stream = self.p.open(format=audio.pyaudio.paInt16,
|
|
|
|
channels=self.AUDIO_CHANNELS,
|
|
|
|
rate=self.AUDIO_SAMPLE_RATE_RX,
|
|
|
|
frames_per_buffer=self.AUDIO_FRAMES_PER_BUFFER_RX,
|
|
|
|
input=True,
|
|
|
|
output=True,
|
|
|
|
input_device_index=static.AUDIO_INPUT_DEVICE,
|
|
|
|
output_device_index=static.AUDIO_OUTPUT_DEVICE,
|
|
|
|
stream_callback=self.audio_callback
|
|
|
|
)
|
|
|
|
structlog.get_logger("structlog").info("opened audio devices")
|
|
|
|
|
|
|
|
except Exception as e:
|
|
|
|
structlog.get_logger("structlog").error("can't open audio device. Exit", e=e)
|
|
|
|
os._exit(1)
|
|
|
|
|
2022-01-07 10:25:28 +00:00
|
|
|
try:
|
|
|
|
structlog.get_logger("structlog").debug("[TNC] starting pyaudio callback")
|
2022-02-19 19:45:57 +00:00
|
|
|
self.audio_stream.start_stream()
|
|
|
|
|
2022-01-07 10:25:28 +00:00
|
|
|
except Exception as e:
|
|
|
|
structlog.get_logger("structlog").error("[TNC] starting pyaudio callback failed", e=e)
|
2021-12-25 16:05:38 +00:00
|
|
|
|
2021-12-26 15:16:25 +00:00
|
|
|
# --------------------------------------------INIT AND OPEN HAMLIB
|
2022-01-18 18:38:05 +00:00
|
|
|
# check how we want to control the radio
|
|
|
|
if static.HAMLIB_RADIOCONTROL == 'direct':
|
|
|
|
import rig
|
|
|
|
elif static.HAMLIB_RADIOCONTROL == 'rigctl':
|
|
|
|
import rigctl as rig
|
|
|
|
elif static.HAMLIB_RADIOCONTROL == 'rigctld':
|
|
|
|
import rigctld as rig
|
2022-02-02 20:12:16 +00:00
|
|
|
elif static.HAMLIB_RADIOCONTROL == 'disabled':
|
|
|
|
import rigdummy as rig
|
2022-01-18 18:38:05 +00:00
|
|
|
else:
|
2022-02-02 20:12:16 +00:00
|
|
|
import rigdummy as rig
|
2022-01-18 18:38:05 +00:00
|
|
|
|
2021-12-22 11:48:49 +00:00
|
|
|
|
2022-01-18 18:38:05 +00:00
|
|
|
self.hamlib = rig.radio()
|
|
|
|
self.hamlib.open_rig(devicename=static.HAMLIB_DEVICE_NAME, deviceport=static.HAMLIB_DEVICE_PORT, hamlib_ptt_type=static.HAMLIB_PTT_TYPE, serialspeed=static.HAMLIB_SERIAL_SPEED, pttport=static.HAMLIB_PTT_PORT, data_bits=static.HAMLIB_DATA_BITS, stop_bits=static.HAMLIB_STOP_BITS, handshake=static.HAMLIB_HANDSHAKE, rigctld_ip = static.HAMLIB_RGICTLD_IP, rigctld_port = static.HAMLIB_RGICTLD_PORT)
|
|
|
|
|
2021-03-12 13:14:36 +00:00
|
|
|
# --------------------------------------------START DECODER THREAD
|
2022-02-02 20:12:16 +00:00
|
|
|
if static.ENABLE_FFT:
|
2022-02-16 08:11:32 +00:00
|
|
|
fft_thread = threading.Thread(target=self.calculate_fft, name="FFT_THREAD" ,daemon=True)
|
2022-02-02 20:12:16 +00:00
|
|
|
fft_thread.start()
|
2021-12-26 14:25:35 +00:00
|
|
|
|
2022-02-16 08:11:32 +00:00
|
|
|
audio_thread_datac0 = threading.Thread(target=self.audio_datac0, name="AUDIO_THREAD DATAC0",daemon=True)
|
2022-01-07 10:25:28 +00:00
|
|
|
audio_thread_datac0.start()
|
2021-03-12 13:14:36 +00:00
|
|
|
|
2022-02-16 08:11:32 +00:00
|
|
|
audio_thread_datac1 = threading.Thread(target=self.audio_datac1, name="AUDIO_THREAD DATAC1",daemon=True)
|
2022-01-07 10:25:28 +00:00
|
|
|
audio_thread_datac1.start()
|
2021-12-25 16:05:38 +00:00
|
|
|
|
2022-02-16 08:11:32 +00:00
|
|
|
audio_thread_datac3 = threading.Thread(target=self.audio_datac3, name="AUDIO_THREAD DATAC3",daemon=True)
|
2022-01-07 10:25:28 +00:00
|
|
|
audio_thread_datac3.start()
|
|
|
|
|
2022-03-20 13:51:30 +00:00
|
|
|
audio_thread_fsk_ldpc0 = threading.Thread(target=self.audio_fsk_ldpc_0, name="AUDIO_THREAD FSK LDPC0",daemon=True)
|
|
|
|
audio_thread_fsk_ldpc0.start()
|
2022-03-19 11:42:10 +00:00
|
|
|
|
2022-02-16 08:11:32 +00:00
|
|
|
hamlib_thread = threading.Thread(target=self.update_rig_data, name="HAMLIB_THREAD",daemon=True)
|
2022-02-10 13:38:55 +00:00
|
|
|
hamlib_thread.start()
|
2022-01-07 10:25:28 +00:00
|
|
|
|
2022-02-16 08:11:32 +00:00
|
|
|
worker_received = threading.Thread(target=self.worker_received, name="WORKER_THREAD",daemon=True)
|
2022-01-07 10:25:28 +00:00
|
|
|
worker_received.start()
|
|
|
|
|
2022-02-16 08:11:32 +00:00
|
|
|
worker_transmit = threading.Thread(target=self.worker_transmit, name="WORKER_THREAD",daemon=True)
|
2022-01-07 10:25:28 +00:00
|
|
|
worker_transmit.start()
|
2021-12-25 16:05:38 +00:00
|
|
|
|
2021-12-20 14:38:43 +00:00
|
|
|
# --------------------------------------------------------------------------------------------------------
|
2021-12-25 16:05:38 +00:00
|
|
|
def audio_callback(self, data_in48k, frame_count, time_info, status):
|
2022-03-04 15:50:32 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
Args:
|
|
|
|
data_in48k:
|
|
|
|
frame_count:
|
|
|
|
time_info:
|
|
|
|
status:
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
|
2022-03-08 20:00:43 +00:00
|
|
|
"""
|
2022-02-15 17:10:14 +00:00
|
|
|
|
2021-12-20 14:38:43 +00:00
|
|
|
x = np.frombuffer(data_in48k, dtype=np.int16)
|
|
|
|
x = self.resampler.resample48_to_8(x)
|
2022-03-04 15:50:32 +00:00
|
|
|
|
2022-03-08 20:00:43 +00:00
|
|
|
length_x = len(x)
|
2022-03-12 14:06:49 +00:00
|
|
|
|
2022-03-08 20:00:43 +00:00
|
|
|
# avoid decoding when transmitting to reduce CPU
|
|
|
|
if not static.TRANSMITTING:
|
|
|
|
# avoid buffer overflow by filling only if buffer not full
|
|
|
|
if not self.datac0_buffer.nbuffer+length_x > self.datac0_buffer.size:
|
|
|
|
self.datac0_buffer.push(x)
|
|
|
|
else:
|
|
|
|
static.BUFFER_OVERFLOW_COUNTER[0] += 1
|
|
|
|
|
|
|
|
# avoid buffer overflow by filling only if buffer not full and selected datachannel mode
|
|
|
|
if not self.datac1_buffer.nbuffer+length_x > self.datac1_buffer.size:
|
|
|
|
if RECEIVE_DATAC1:
|
|
|
|
self.datac1_buffer.push(x)
|
|
|
|
else:
|
|
|
|
static.BUFFER_OVERFLOW_COUNTER[1] += 1
|
|
|
|
|
|
|
|
# avoid buffer overflow by filling only if buffer not full and selected datachannel mode
|
|
|
|
if not self.datac3_buffer.nbuffer+length_x > self.datac3_buffer.size:
|
|
|
|
if RECEIVE_DATAC3:
|
|
|
|
self.datac3_buffer.push(x)
|
|
|
|
else:
|
|
|
|
static.BUFFER_OVERFLOW_COUNTER[2] += 1
|
2022-03-19 11:42:10 +00:00
|
|
|
|
|
|
|
# avoid buffer overflow by filling only if buffer not full and selected datachannel mode
|
|
|
|
if not self.fsk_ldpc_buffer.nbuffer+length_x > self.fsk_ldpc_buffer.size:
|
2022-03-20 13:51:30 +00:00
|
|
|
#if RECEIVE_FSK_LDPC_0:
|
2022-03-19 11:42:10 +00:00
|
|
|
self.fsk_ldpc_buffer.push(x)
|
|
|
|
else:
|
|
|
|
static.BUFFER_OVERFLOW_COUNTER[2] += 1
|
|
|
|
|
|
|
|
|
2022-03-08 20:00:43 +00:00
|
|
|
if not self.modoutqueue or self.mod_out_locked:
|
|
|
|
data_out48k = np.zeros(frame_count, dtype=np.int16)
|
2022-01-12 06:27:42 +00:00
|
|
|
self.fft_data = bytes(x)
|
2022-02-02 20:12:16 +00:00
|
|
|
|
2021-12-22 11:48:49 +00:00
|
|
|
else:
|
2022-03-08 20:00:43 +00:00
|
|
|
data_out48k = self.modoutqueue.popleft()
|
2022-01-12 06:27:42 +00:00
|
|
|
self.fft_data = bytes(data_out48k)
|
2022-03-12 14:06:49 +00:00
|
|
|
|
2022-01-20 19:38:56 +00:00
|
|
|
return (data_out48k, audio.pyaudio.paContinue)
|
2021-09-25 13:24:25 +00:00
|
|
|
|
2021-11-07 19:31:26 +00:00
|
|
|
# --------------------------------------------------------------------------------------------------------
|
2021-03-12 13:14:36 +00:00
|
|
|
|
2021-12-26 15:50:31 +00:00
|
|
|
def transmit(self, mode, repeats, repeat_delay, frames):
|
2022-03-04 15:50:32 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
Args:
|
|
|
|
mode:
|
|
|
|
repeats:
|
|
|
|
repeat_delay:
|
|
|
|
frames:
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
|
|
|
|
"""
|
2022-01-07 11:55:03 +00:00
|
|
|
static.TRANSMITTING = True
|
2022-02-02 20:12:16 +00:00
|
|
|
# toggle ptt early to save some time and send ptt state via socket
|
2022-01-12 06:27:42 +00:00
|
|
|
static.PTT_STATE = self.hamlib.set_ptt(True)
|
2022-02-02 20:12:16 +00:00
|
|
|
jsondata = {"ptt":"True"}
|
|
|
|
data_out = json.dumps(jsondata)
|
|
|
|
sock.SOCKET_QUEUE.put(data_out)
|
|
|
|
|
|
|
|
|
2021-12-22 11:48:49 +00:00
|
|
|
# open codec2 instance
|
2021-12-26 09:06:07 +00:00
|
|
|
self.MODE = mode
|
2022-03-20 13:51:30 +00:00
|
|
|
if self.MODE == 'FSK_LDPC_0':
|
|
|
|
freedv = cast(codec2.api.freedv_open_advanced(codec2.api.FREEDV_MODE_FSK_LDPC, ctypes.byref(codec2.api.FREEDV_MODE_FSK_LDPC_0_ADV)), c_void_p)
|
|
|
|
|
|
|
|
else:
|
|
|
|
freedv = cast(codec2.api.freedv_open(self.MODE), c_void_p)
|
2021-12-22 11:48:49 +00:00
|
|
|
|
2022-03-20 13:51:30 +00:00
|
|
|
|
2021-12-22 11:48:49 +00:00
|
|
|
# get number of bytes per frame for mode
|
|
|
|
bytes_per_frame = int(codec2.api.freedv_get_bits_per_modem_frame(freedv)/8)
|
|
|
|
payload_bytes_per_frame = bytes_per_frame -2
|
2022-03-20 13:51:30 +00:00
|
|
|
print(bytes_per_frame)
|
2021-12-22 11:48:49 +00:00
|
|
|
# init buffer for data
|
|
|
|
n_tx_modem_samples = codec2.api.freedv_get_n_tx_modem_samples(freedv)
|
|
|
|
mod_out = create_string_buffer(n_tx_modem_samples * 2)
|
|
|
|
|
|
|
|
# init buffer for preample
|
|
|
|
n_tx_preamble_modem_samples = codec2.api.freedv_get_n_tx_preamble_modem_samples(freedv)
|
|
|
|
mod_out_preamble = create_string_buffer(n_tx_preamble_modem_samples * 2)
|
|
|
|
|
|
|
|
# init buffer for postamble
|
|
|
|
n_tx_postamble_modem_samples = codec2.api.freedv_get_n_tx_postamble_modem_samples(freedv)
|
|
|
|
mod_out_postamble = create_string_buffer(n_tx_postamble_modem_samples * 2)
|
|
|
|
|
2021-12-25 16:05:38 +00:00
|
|
|
# add empty data to handle ptt toggle time
|
2021-12-29 19:54:54 +00:00
|
|
|
data_delay_mseconds = 0 #miliseconds
|
|
|
|
data_delay = int(self.MODEM_SAMPLE_RATE*(data_delay_mseconds/1000))
|
2021-12-25 16:05:38 +00:00
|
|
|
mod_out_silence = create_string_buffer(data_delay*2)
|
|
|
|
txbuffer = bytes(mod_out_silence)
|
2021-12-22 11:48:49 +00:00
|
|
|
|
2021-12-25 16:05:38 +00:00
|
|
|
for i in range(1,repeats+1):
|
2021-12-22 11:48:49 +00:00
|
|
|
# write preamble to txbuffer
|
|
|
|
codec2.api.freedv_rawdatapreambletx(freedv, mod_out_preamble)
|
2021-12-25 16:05:38 +00:00
|
|
|
txbuffer += bytes(mod_out_preamble)
|
2022-03-08 20:00:43 +00:00
|
|
|
|
2021-12-22 11:48:49 +00:00
|
|
|
# create modulaton for n frames in list
|
|
|
|
for n in range(0,len(frames)):
|
|
|
|
|
|
|
|
# create buffer for data
|
|
|
|
buffer = bytearray(payload_bytes_per_frame) # use this if CRC16 checksum is required ( DATA1-3)
|
|
|
|
buffer[:len(frames[n])] = frames[n] # set buffersize to length of data which will be send
|
|
|
|
|
|
|
|
# create crc for data frame - we are using the crc function shipped with codec2 to avoid
|
|
|
|
# crc algorithm incompatibilities
|
|
|
|
crc = ctypes.c_ushort(codec2.api.freedv_gen_crc16(bytes(buffer), payload_bytes_per_frame)) # generate CRC16
|
|
|
|
crc = crc.value.to_bytes(2, byteorder='big') # convert crc to 2 byte hex string
|
|
|
|
buffer += crc # append crc16 to buffer
|
|
|
|
|
|
|
|
data = (ctypes.c_ubyte * bytes_per_frame).from_buffer_copy(buffer)
|
|
|
|
codec2.api.freedv_rawdatatx(freedv,mod_out,data) # modulate DATA and save it into mod_out pointer
|
|
|
|
txbuffer += bytes(mod_out)
|
|
|
|
|
|
|
|
|
|
|
|
# append postamble to txbuffer
|
|
|
|
codec2.api.freedv_rawdatapostambletx(freedv, mod_out_postamble)
|
|
|
|
txbuffer += bytes(mod_out_postamble)
|
2021-12-25 16:05:38 +00:00
|
|
|
# add delay to end of frames
|
|
|
|
samples_delay = int(self.MODEM_SAMPLE_RATE*(repeat_delay/1000))
|
|
|
|
mod_out_silence = create_string_buffer(samples_delay*2)
|
|
|
|
txbuffer += bytes(mod_out_silence)
|
|
|
|
|
2021-12-22 11:48:49 +00:00
|
|
|
# resample up to 48k (resampler works on np.int16)
|
|
|
|
x = np.frombuffer(txbuffer, dtype=np.int16)
|
|
|
|
txbuffer_48k = self.resampler.resample8_to_48(x)
|
|
|
|
|
2022-03-10 19:46:34 +00:00
|
|
|
# explicitly lock our usage of mod_out_queue if needed
|
|
|
|
# deaktivated for testing purposes
|
|
|
|
self.mod_out_locked = False
|
2022-02-02 20:12:16 +00:00
|
|
|
|
2022-03-08 20:00:43 +00:00
|
|
|
chunk_length = self.AUDIO_FRAMES_PER_BUFFER_TX #4800
|
|
|
|
chunk = [txbuffer_48k[i:i+chunk_length] for i in range(0, len(txbuffer_48k), chunk_length)]
|
2021-12-22 11:48:49 +00:00
|
|
|
for c in chunk:
|
2022-03-08 20:00:43 +00:00
|
|
|
if len(c) < chunk_length:
|
|
|
|
delta = chunk_length - len(c)
|
|
|
|
delta_zeros = np.zeros(delta, dtype=np.int16)
|
|
|
|
c = np.append(c, delta_zeros)
|
2022-03-10 19:46:34 +00:00
|
|
|
#structlog.get_logger("structlog").debug("[TNC] mod out shorter than audio buffer", delta=delta)
|
2022-03-08 20:00:43 +00:00
|
|
|
self.modoutqueue.append(c)
|
2022-03-12 14:06:49 +00:00
|
|
|
|
2022-01-23 06:10:04 +00:00
|
|
|
# Release our mod_out_lock so we can use the queue
|
|
|
|
self.mod_out_locked = False
|
|
|
|
|
2022-03-08 20:00:43 +00:00
|
|
|
while self.modoutqueue:
|
|
|
|
time.sleep(0.01)
|
2022-02-02 20:12:16 +00:00
|
|
|
|
2021-12-25 16:05:38 +00:00
|
|
|
static.PTT_STATE = self.hamlib.set_ptt(False)
|
2022-03-04 15:50:32 +00:00
|
|
|
|
|
|
|
# push ptt state to socket stream
|
2022-02-02 20:12:16 +00:00
|
|
|
jsondata = {"ptt":"False"}
|
|
|
|
data_out = json.dumps(jsondata)
|
|
|
|
sock.SOCKET_QUEUE.put(data_out)
|
2022-01-23 06:10:04 +00:00
|
|
|
|
|
|
|
# after processing we want to set the locking state back to true to be prepared for next transmission
|
|
|
|
self.mod_out_locked = True
|
|
|
|
|
2022-01-07 11:55:03 +00:00
|
|
|
self.c_lib.freedv_close(freedv)
|
|
|
|
self.modem_transmit_queue.task_done()
|
|
|
|
static.TRANSMITTING = False
|
|
|
|
threading.Event().set()
|
2021-12-22 11:48:49 +00:00
|
|
|
|
2022-01-07 10:25:28 +00:00
|
|
|
def audio_datac0(self):
|
2022-03-04 15:50:32 +00:00
|
|
|
""" """
|
2022-01-15 18:23:28 +00:00
|
|
|
nbytes_datac0 = 0
|
2021-12-22 11:48:49 +00:00
|
|
|
while self.audio_stream.is_active():
|
2022-01-07 10:25:28 +00:00
|
|
|
threading.Event().wait(0.01)
|
2021-12-22 11:48:49 +00:00
|
|
|
while self.datac0_buffer.nbuffer >= self.datac0_nin:
|
|
|
|
# demodulate audio
|
2022-01-07 10:25:28 +00:00
|
|
|
nbytes_datac0 = codec2.api.freedv_rawdatarx(self.datac0_freedv, self.datac0_bytes_out, self.datac0_buffer.buffer.ctypes)
|
2021-12-22 11:48:49 +00:00
|
|
|
self.datac0_buffer.pop(self.datac0_nin)
|
|
|
|
self.datac0_nin = codec2.api.freedv_nin(self.datac0_freedv)
|
2022-01-07 10:25:28 +00:00
|
|
|
if nbytes_datac0 == self.datac0_bytes_per_frame:
|
|
|
|
self.modem_received_queue.put([self.datac0_bytes_out, self.datac0_freedv ,self.datac0_bytes_per_frame])
|
2021-12-22 11:48:49 +00:00
|
|
|
self.get_scatter(self.datac0_freedv)
|
|
|
|
self.calculate_snr(self.datac0_freedv)
|
2022-01-07 10:25:28 +00:00
|
|
|
|
|
|
|
def audio_datac1(self):
|
2022-03-04 15:50:32 +00:00
|
|
|
""" """
|
2022-01-07 10:25:28 +00:00
|
|
|
nbytes_datac1 = 0
|
|
|
|
while self.audio_stream.is_active():
|
|
|
|
threading.Event().wait(0.01)
|
2021-12-22 11:48:49 +00:00
|
|
|
while self.datac1_buffer.nbuffer >= self.datac1_nin:
|
2022-03-08 20:00:43 +00:00
|
|
|
# demodulate audio
|
|
|
|
nbytes_datac1 = codec2.api.freedv_rawdatarx(self.datac1_freedv, self.datac1_bytes_out, self.datac1_buffer.buffer.ctypes)
|
|
|
|
self.datac1_buffer.pop(self.datac1_nin)
|
|
|
|
self.datac1_nin = codec2.api.freedv_nin(self.datac1_freedv)
|
|
|
|
if nbytes_datac1 == self.datac1_bytes_per_frame:
|
|
|
|
self.modem_received_queue.put([self.datac1_bytes_out, self.datac1_freedv ,self.datac1_bytes_per_frame])
|
|
|
|
self.get_scatter(self.datac1_freedv)
|
|
|
|
self.calculate_snr(self.datac1_freedv)
|
2022-01-07 10:25:28 +00:00
|
|
|
|
|
|
|
def audio_datac3(self):
|
2022-03-04 15:50:32 +00:00
|
|
|
""" """
|
2022-01-12 06:27:42 +00:00
|
|
|
nbytes_datac3 = 0
|
|
|
|
while self.audio_stream.is_active():
|
|
|
|
threading.Event().wait(0.01)
|
|
|
|
while self.datac3_buffer.nbuffer >= self.datac3_nin:
|
|
|
|
# demodulate audio
|
|
|
|
nbytes_datac3 = codec2.api.freedv_rawdatarx(self.datac3_freedv, self.datac3_bytes_out, self.datac3_buffer.buffer.ctypes)
|
|
|
|
self.datac3_buffer.pop(self.datac3_nin)
|
|
|
|
self.datac3_nin = codec2.api.freedv_nin(self.datac3_freedv)
|
|
|
|
if nbytes_datac3 == self.datac3_bytes_per_frame:
|
|
|
|
self.modem_received_queue.put([self.datac3_bytes_out, self.datac3_freedv ,self.datac3_bytes_per_frame])
|
|
|
|
self.get_scatter(self.datac3_freedv)
|
|
|
|
self.calculate_snr(self.datac3_freedv)
|
2022-01-05 09:59:09 +00:00
|
|
|
|
2022-03-20 13:51:30 +00:00
|
|
|
def audio_fsk_ldpc_0(self):
|
2022-03-19 11:42:10 +00:00
|
|
|
""" """
|
|
|
|
nbytes_fsk_ldpc = 0
|
|
|
|
while self.audio_stream.is_active():
|
|
|
|
threading.Event().wait(0.01)
|
|
|
|
while self.fsk_ldpc_buffer.nbuffer >= self.fsk_ldpc_nin:
|
|
|
|
# demodulate audio
|
|
|
|
nbytes_fsk_ldpc = codec2.api.freedv_rawdatarx(self.fsk_ldpc_freedv, self.fsk_ldpc_bytes_out, self.fsk_ldpc_buffer.buffer.ctypes)
|
|
|
|
self.fsk_ldpc_buffer.pop(self.fsk_ldpc_nin)
|
|
|
|
self.fsk_ldpc_nin = codec2.api.freedv_nin(self.fsk_ldpc_freedv)
|
|
|
|
if nbytes_fsk_ldpc == self.fsk_ldpc_bytes_per_frame:
|
|
|
|
self.modem_received_queue.put([self.fsk_ldpc_bytes_out, self.fsk_ldpc_freedv ,self.fsk_ldpc_bytes_per_frame])
|
|
|
|
self.get_scatter(self.fsk_ldpc_freedv)
|
|
|
|
self.calculate_snr(self.fsk_ldpc_freedv)
|
2022-01-07 10:25:28 +00:00
|
|
|
|
|
|
|
# worker for FIFO queue for processing received frames
|
|
|
|
def worker_transmit(self):
|
2022-03-04 15:50:32 +00:00
|
|
|
""" """
|
2022-01-07 10:25:28 +00:00
|
|
|
while True:
|
|
|
|
data = self.modem_transmit_queue.get()
|
|
|
|
self.transmit(mode=data[0], repeats=data[1], repeat_delay=data[2], frames=data[3])
|
2022-01-07 11:55:03 +00:00
|
|
|
#self.modem_transmit_queue.task_done()
|
2021-12-22 11:48:49 +00:00
|
|
|
|
|
|
|
|
2021-12-20 14:38:43 +00:00
|
|
|
|
|
|
|
# worker for FIFO queue for processing received frames
|
2022-01-07 10:25:28 +00:00
|
|
|
def worker_received(self):
|
2022-03-04 15:50:32 +00:00
|
|
|
""" """
|
2021-12-20 14:38:43 +00:00
|
|
|
while True:
|
2022-01-07 10:25:28 +00:00
|
|
|
data = self.modem_received_queue.get()
|
2022-01-04 12:09:15 +00:00
|
|
|
# data[0] = bytes_out
|
|
|
|
# data[1] = freedv session
|
|
|
|
# data[2] = bytes_per_frame
|
2022-01-07 10:25:28 +00:00
|
|
|
data_handler.DATA_QUEUE_RECEIVED.put([data[0], data[1], data[2]])
|
|
|
|
self.modem_received_queue.task_done()
|
2021-12-20 14:38:43 +00:00
|
|
|
|
2021-10-13 17:39:46 +00:00
|
|
|
|
|
|
|
def get_frequency_offset(self, freedv):
|
2022-03-04 15:50:32 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
Args:
|
|
|
|
freedv:
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
|
|
|
|
"""
|
2021-10-13 17:39:46 +00:00
|
|
|
modemStats = MODEMSTATS()
|
|
|
|
self.c_lib.freedv_get_modem_extended_stats.restype = None
|
|
|
|
self.c_lib.freedv_get_modem_extended_stats(freedv, ctypes.byref(modemStats))
|
|
|
|
offset = round(modemStats.foff) * (-1)
|
2021-10-24 12:44:55 +00:00
|
|
|
static.FREQ_OFFSET = offset
|
2021-10-13 18:43:38 +00:00
|
|
|
return offset
|
|
|
|
|
2021-10-13 17:39:46 +00:00
|
|
|
|
2021-08-06 20:09:16 +00:00
|
|
|
def get_scatter(self, freedv):
|
2022-03-04 15:50:32 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
Args:
|
|
|
|
freedv:
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
|
|
|
|
"""
|
2022-02-02 20:12:16 +00:00
|
|
|
if static.ENABLE_SCATTER:
|
|
|
|
modemStats = MODEMSTATS()
|
|
|
|
self.c_lib.freedv_get_modem_extended_stats.restype = None
|
|
|
|
self.c_lib.freedv_get_modem_extended_stats(freedv, ctypes.byref(modemStats))
|
|
|
|
|
|
|
|
scatterdata = []
|
|
|
|
scatterdata_small = []
|
|
|
|
for i in range(MODEM_STATS_NC_MAX):
|
|
|
|
for j in range(MODEM_STATS_NR_MAX):
|
|
|
|
# check if odd or not to get every 2nd item for x
|
|
|
|
if (j % 2) == 0:
|
|
|
|
xsymbols = round(modemStats.rx_symbols[i][j]/1000)
|
|
|
|
ysymbols = round(modemStats.rx_symbols[i][j+1]/1000)
|
|
|
|
# check if value 0.0 or has real data
|
|
|
|
if xsymbols != 0.0 and ysymbols != 0.0:
|
|
|
|
scatterdata.append({"x": xsymbols, "y": ysymbols})
|
|
|
|
|
|
|
|
# only append scatter data if new data arrived
|
|
|
|
if 150 > len(scatterdata) > 0:
|
|
|
|
static.SCATTER = scatterdata
|
|
|
|
else:
|
|
|
|
# only take every tenth data point
|
|
|
|
scatterdata_small = scatterdata[::10]
|
|
|
|
static.SCATTER = scatterdata_small
|
2021-09-25 13:24:25 +00:00
|
|
|
|
2021-12-25 16:05:38 +00:00
|
|
|
|
2021-03-16 15:37:23 +00:00
|
|
|
def calculate_snr(self, freedv):
|
2022-03-04 15:50:32 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
Args:
|
|
|
|
freedv:
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
|
|
|
|
"""
|
2021-09-25 13:24:25 +00:00
|
|
|
|
2021-03-16 15:37:23 +00:00
|
|
|
modem_stats_snr = c_float()
|
|
|
|
modem_stats_sync = c_int()
|
2021-09-25 13:24:25 +00:00
|
|
|
|
2022-03-20 13:51:30 +00:00
|
|
|
self.c_lib.freedv_get_modem_stats(freedv, byref(modem_stats_sync), byref(modem_stats_snr))
|
2021-03-16 15:37:23 +00:00
|
|
|
modem_stats_snr = modem_stats_snr.value
|
2022-03-20 13:51:30 +00:00
|
|
|
modem_stats_sync = modem_stats_sync.value
|
2022-01-04 13:16:50 +00:00
|
|
|
|
2021-03-19 14:28:55 +00:00
|
|
|
try:
|
2022-03-14 19:21:15 +00:00
|
|
|
snr = round(modem_stats_snr, 1)
|
|
|
|
static.SNR = np.clip(snr, 0, 255) #limit to max value of 255
|
2022-01-04 13:16:50 +00:00
|
|
|
return static.SNR
|
2021-03-19 14:28:55 +00:00
|
|
|
except:
|
|
|
|
static.SNR = 0
|
2022-01-04 13:16:50 +00:00
|
|
|
return static.SNR
|
2021-12-25 16:05:38 +00:00
|
|
|
|
|
|
|
def update_rig_data(self):
|
2022-03-04 15:50:32 +00:00
|
|
|
""" """
|
2021-09-24 15:16:38 +00:00
|
|
|
while True:
|
2022-02-02 20:12:16 +00:00
|
|
|
#time.sleep(1.5)
|
2022-01-07 10:25:28 +00:00
|
|
|
threading.Event().wait(0.5)
|
2021-12-26 14:25:35 +00:00
|
|
|
#(static.HAMLIB_FREQUENCY, static.HAMLIB_MODE, static.HAMLIB_BANDWITH, static.PTT_STATE) = self.hamlib.get_rig_data()
|
|
|
|
static.HAMLIB_FREQUENCY = self.hamlib.get_frequency()
|
|
|
|
static.HAMLIB_MODE = self.hamlib.get_mode()
|
|
|
|
static.HAMLIB_BANDWITH = self.hamlib.get_bandwith()
|
2021-12-25 16:05:38 +00:00
|
|
|
|
2021-09-24 15:16:38 +00:00
|
|
|
def calculate_fft(self):
|
2022-03-04 15:50:32 +00:00
|
|
|
""" """
|
2022-02-15 17:10:14 +00:00
|
|
|
# channel_busy_delay counter
|
|
|
|
channel_busy_delay = 0
|
|
|
|
|
2021-09-24 15:16:38 +00:00
|
|
|
while True:
|
2022-01-07 10:25:28 +00:00
|
|
|
#time.sleep(0.01)
|
|
|
|
threading.Event().wait(0.01)
|
2021-09-24 15:16:38 +00:00
|
|
|
# WE NEED TO OPTIMIZE THIS!
|
2022-01-07 10:25:28 +00:00
|
|
|
if len(self.fft_data) >= 128:
|
|
|
|
|
2021-10-03 14:31:34 +00:00
|
|
|
data_in = self.fft_data
|
2022-03-04 15:50:32 +00:00
|
|
|
|
|
|
|
# delete fft_buffer
|
2022-03-08 20:00:43 +00:00
|
|
|
self.fft_data = bytes()
|
2022-01-07 10:25:28 +00:00
|
|
|
|
2021-10-03 14:31:34 +00:00
|
|
|
# https://gist.github.com/ZWMiller/53232427efc5088007cab6feee7c6e4c
|
|
|
|
audio_data = np.fromstring(data_in, np.int16)
|
|
|
|
# Fast Fourier Transform, 10*log10(abs) is to scale it to dB
|
|
|
|
# and make sure it's not imaginary
|
|
|
|
|
|
|
|
try:
|
|
|
|
fftarray = np.fft.rfft(audio_data)
|
2021-10-05 19:03:15 +00:00
|
|
|
|
2021-10-03 14:31:34 +00:00
|
|
|
# set value 0 to 1 to avoid division by zero
|
|
|
|
fftarray[fftarray == 0] = 1
|
|
|
|
dfft = 10.*np.log10(abs(fftarray))
|
2022-02-15 17:10:14 +00:00
|
|
|
|
|
|
|
# get average of dfft
|
|
|
|
avg = np.mean(dfft)
|
|
|
|
# detect signals which are higher than the average + 10 ( +10 smoothes the output )
|
|
|
|
# data higher than the average must be a signal. Therefore we are setting it to 100 so it will be highlighted
|
|
|
|
# have to do this when we are not transmittig so our own sending data will not affect this too much
|
|
|
|
if not static.TRANSMITTING:
|
|
|
|
dfft[dfft>avg+10] = 100
|
|
|
|
|
|
|
|
# check for signals higher than average by checking for "100"
|
|
|
|
# if we have a signal, increment our channel_busy delay counter so we have a smoother state toggle
|
|
|
|
|
|
|
|
if np.sum(dfft[dfft>avg+10]) >= 300 and not static.TRANSMITTING:
|
|
|
|
static.CHANNEL_BUSY = True
|
|
|
|
channel_busy_delay += 5
|
|
|
|
# limit delay counter to a maximun of 30. The higher this value, the linger we will wait until releasing state
|
|
|
|
if channel_busy_delay > 50:
|
|
|
|
channel_busy_delay = 50
|
|
|
|
else:
|
|
|
|
# decrement channel busy counter if no signal has been detected.
|
|
|
|
channel_busy_delay -= 1
|
|
|
|
if channel_busy_delay < 0:
|
|
|
|
channel_busy_delay = 0
|
|
|
|
# if our channel busy counter reached 0, we toggle state to False
|
|
|
|
if channel_busy_delay == 0:
|
|
|
|
static.CHANNEL_BUSY = False
|
|
|
|
|
2021-10-05 19:03:15 +00:00
|
|
|
# round data to decrease size
|
2022-02-15 17:10:14 +00:00
|
|
|
dfft = np.around(dfft, 0)
|
2021-10-03 14:31:34 +00:00
|
|
|
dfftlist = dfft.tolist()
|
2021-12-26 15:50:31 +00:00
|
|
|
|
|
|
|
static.FFT = dfftlist[0:320] #200 --> bandwith 3000
|
2022-01-07 10:25:28 +00:00
|
|
|
|
2021-10-03 14:31:34 +00:00
|
|
|
except:
|
2021-11-18 18:40:22 +00:00
|
|
|
|
|
|
|
structlog.get_logger("structlog").debug("[TNC] Setting fft=0")
|
2021-10-03 14:31:34 +00:00
|
|
|
# else 0
|
2022-02-02 20:12:16 +00:00
|
|
|
static.FFT = [0]
|
2021-10-03 14:31:34 +00:00
|
|
|
else:
|
|
|
|
pass
|
2021-12-29 19:54:54 +00:00
|
|
|
|
2022-01-04 22:02:29 +00:00
|
|
|
def set_frames_per_burst(self, n_frames_per_burst):
|
2022-03-04 15:50:32 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
Args:
|
|
|
|
n_frames_per_burst:
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
|
|
|
|
"""
|
2022-01-04 22:02:29 +00:00
|
|
|
codec2.api.freedv_set_frames_per_burst(self.datac1_freedv,n_frames_per_burst)
|
|
|
|
codec2.api.freedv_set_frames_per_burst(self.datac3_freedv,n_frames_per_burst)
|
2022-03-19 11:42:10 +00:00
|
|
|
codec2.api.freedv_set_frames_per_burst(self.fsk_ldpc_freedv,n_frames_per_burst)
|
2022-01-07 10:25:28 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def get_bytes_per_frame(mode):
|
2022-03-04 15:50:32 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
Args:
|
|
|
|
mode:
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
|
|
|
|
"""
|
2022-01-07 10:25:28 +00:00
|
|
|
freedv = cast(codec2.api.freedv_open(mode), c_void_p)
|
|
|
|
|
|
|
|
# get number of bytes per frame for mode
|
|
|
|
return int(codec2.api.freedv_get_bits_per_modem_frame(freedv)/8)
|
|
|
|
|