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
|
2020-12-23 16:48:54 +00:00
|
|
|
import ctypes
|
|
|
|
from ctypes import *
|
|
|
|
import pathlib
|
2021-02-16 13:23:57 +00:00
|
|
|
import audioop
|
2021-09-25 13:24:25 +00:00
|
|
|
#import asyncio
|
2020-12-26 18:27:09 +00:00
|
|
|
import logging
|
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
|
|
|
|
import pyaudio
|
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
|
2020-12-27 21:38:49 +00:00
|
|
|
|
2021-09-25 13:24:25 +00:00
|
|
|
|
2021-09-26 15:51:11 +00:00
|
|
|
|
2021-09-25 13:24:25 +00:00
|
|
|
# sys.path.append("hamlib/linux")
|
2021-09-16 15:17:55 +00:00
|
|
|
try:
|
|
|
|
import Hamlib
|
|
|
|
print("running Hamlib from Sys Path")
|
|
|
|
except ImportError:
|
|
|
|
from hamlib.linux import Hamlib
|
|
|
|
print("running Hamlib from precompiled bundle")
|
|
|
|
else:
|
|
|
|
# place for rigctld
|
|
|
|
pass
|
2021-09-06 16:50:12 +00:00
|
|
|
|
2021-09-25 13:24:25 +00:00
|
|
|
|
2021-09-06 16:50:12 +00:00
|
|
|
#import rigctld
|
|
|
|
#rigctld = rigctld.Rigctld()
|
2021-04-11 16:34:03 +00:00
|
|
|
|
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
|
|
|
|
|
2021-09-25 13:24:25 +00:00
|
|
|
|
2021-08-06 20:09:16 +00:00
|
|
|
class MODEMSTATS(ctypes.Structure):
|
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
|
|
|
|
|
|
|
|
2020-12-23 16:48:54 +00:00
|
|
|
class RF():
|
2021-03-12 13:14:36 +00:00
|
|
|
|
2021-09-25 13:24:25 +00:00
|
|
|
def __init__(self):
|
|
|
|
|
2021-03-12 13:14:36 +00:00
|
|
|
# -------------------------------------------- LOAD FREEDV
|
2021-09-06 16:50:12 +00:00
|
|
|
try:
|
|
|
|
# we check at first for libcodec2 in root - necessary if we want to run it inside a pyinstaller binary
|
|
|
|
libname = pathlib.Path("libcodec2.so.1.0")
|
|
|
|
self.c_lib = ctypes.CDLL(libname)
|
2021-09-08 15:25:11 +00:00
|
|
|
print("running libcodec from INTERNAL library")
|
2021-09-06 16:50:12 +00:00
|
|
|
except:
|
|
|
|
# if we cant load libcodec from root, we check for subdirectory
|
|
|
|
# this is, if we want to run it without beeing build in a dev environment
|
|
|
|
libname = pathlib.Path().absolute() / "codec2/build_linux/src/libcodec2.so.1.0"
|
|
|
|
self.c_lib = ctypes.CDLL(libname)
|
2021-09-08 15:25:11 +00:00
|
|
|
print("running libcodec from EXTERNAL library")
|
2021-03-12 13:14:36 +00:00
|
|
|
# --------------------------------------------CREATE PYAUDIO INSTANCE
|
2021-01-05 14:03:41 +00:00
|
|
|
self.p = pyaudio.PyAudio()
|
2021-09-10 16:56:33 +00:00
|
|
|
atexit.register(self.p.terminate)
|
2021-03-12 13:14:36 +00:00
|
|
|
# --------------------------------------------OPEN AUDIO CHANNEL RX
|
|
|
|
self.stream_rx = self.p.open(format=pyaudio.paInt16,
|
|
|
|
channels=static.AUDIO_CHANNELS,
|
|
|
|
rate=static.AUDIO_SAMPLE_RATE_RX,
|
|
|
|
frames_per_buffer=static.AUDIO_FRAMES_PER_BUFFER,
|
|
|
|
input=True,
|
2021-03-18 10:39:12 +00:00
|
|
|
input_device_index=static.AUDIO_INPUT_DEVICE
|
2021-03-12 13:14:36 +00:00
|
|
|
)
|
|
|
|
# --------------------------------------------OPEN AUDIO CHANNEL TX
|
2021-01-06 17:01:54 +00:00
|
|
|
self.stream_tx = self.p.open(format=pyaudio.paInt16,
|
2021-03-12 13:14:36 +00:00
|
|
|
channels=1,
|
|
|
|
rate=static.AUDIO_SAMPLE_RATE_TX,
|
|
|
|
frames_per_buffer=static.AUDIO_FRAMES_PER_BUFFER, # n_nom_modem_samples
|
|
|
|
output=True,
|
|
|
|
output_device_index=static.AUDIO_OUTPUT_DEVICE, # static.AUDIO_OUTPUT_DEVICE
|
|
|
|
)
|
|
|
|
|
2021-03-09 20:35:52 +00:00
|
|
|
self.streambuffer = bytes(0)
|
2021-03-12 13:14:36 +00:00
|
|
|
self.audio_writing_to_stream = False
|
|
|
|
# --------------------------------------------START DECODER THREAD
|
|
|
|
|
2021-09-26 15:51:11 +00:00
|
|
|
DECODER_THREAD = threading.Thread(target=self.receive, name="DECODER_THREAD")
|
2021-09-23 15:49:45 +00:00
|
|
|
DECODER_THREAD.start()
|
2021-03-12 13:14:36 +00:00
|
|
|
|
2021-09-26 15:51:11 +00:00
|
|
|
PLAYBACK_THREAD = threading.Thread(target=self.play_audio, name="PLAYBACK_THREAD")
|
2021-09-23 15:49:45 +00:00
|
|
|
PLAYBACK_THREAD.start()
|
2021-03-12 13:14:36 +00:00
|
|
|
|
2021-09-24 15:16:38 +00:00
|
|
|
self.fft_data = bytes()
|
2021-09-26 15:51:11 +00:00
|
|
|
FFT_THREAD = threading.Thread(target=self.calculate_fft, name="FFT_THREAD")
|
2021-09-24 15:16:38 +00:00
|
|
|
FFT_THREAD.start()
|
|
|
|
|
2021-03-12 13:14:36 +00:00
|
|
|
# --------------------------------------------CONFIGURE HAMLIB
|
2021-09-25 13:24:25 +00:00
|
|
|
# my_rig.set_ptt(Hamlib.RIG_PTT_RIG,0)
|
|
|
|
# my_rig.set_ptt(Hamlib.RIG_PTT_SERIAL_DTR,0)
|
|
|
|
# my_rig.set_ptt(Hamlib.RIG_PTT_SERIAL_RTS,1)
|
2021-09-25 11:33:13 +00:00
|
|
|
#self.my_rig.set_conf("dtr_state", "OFF")
|
|
|
|
#my_rig.set_conf("rts_state", "OFF")
|
|
|
|
#self.my_rig.set_conf("ptt_type", "RTS")
|
|
|
|
#my_rig.set_conf("ptt_type", "RIG_PTT_SERIAL_RTS")
|
2021-02-19 10:08:44 +00:00
|
|
|
|
2021-05-13 16:43:37 +00:00
|
|
|
# try to init hamlib
|
|
|
|
try:
|
|
|
|
Hamlib.rig_set_debug(Hamlib.RIG_DEBUG_NONE)
|
2021-09-13 18:01:39 +00:00
|
|
|
self.my_rig = Hamlib.Rig(int(static.HAMLIB_DEVICE_ID))
|
2021-05-13 16:43:37 +00:00
|
|
|
self.my_rig.set_conf("rig_pathname", static.HAMLIB_DEVICE_PORT)
|
|
|
|
self.my_rig.set_conf("retry", "5")
|
2021-07-25 14:34:28 +00:00
|
|
|
self.my_rig.set_conf("serial_speed", static.HAMLIB_SERIAL_SPEED)
|
2021-05-13 16:43:37 +00:00
|
|
|
self.my_rig.set_conf("serial_handshake", "None")
|
|
|
|
self.my_rig.set_conf("stop_bits", "1")
|
|
|
|
self.my_rig.set_conf("data_bits", "8")
|
|
|
|
|
2021-09-25 11:33:13 +00:00
|
|
|
if static.HAMLIB_PTT_TYPE == 'RIG':
|
2021-05-13 16:43:37 +00:00
|
|
|
self.hamlib_ptt_type = Hamlib.RIG_PTT_RIG
|
2021-09-25 13:24:25 +00:00
|
|
|
|
2021-09-25 11:33:13 +00:00
|
|
|
elif static.HAMLIB_PTT_TYPE == 'DTR-H':
|
2021-05-13 16:43:37 +00:00
|
|
|
self.hamlib_ptt_type = Hamlib.RIG_PTT_SERIAL_DTR
|
2021-09-25 11:33:13 +00:00
|
|
|
self.my_rig.set_conf("dtr_state", "HIGH")
|
|
|
|
self.my_rig.set_conf("ptt_type", "DTR")
|
2021-09-25 13:24:25 +00:00
|
|
|
|
2021-09-25 11:33:13 +00:00
|
|
|
elif static.HAMLIB_PTT_TYPE == 'DTR-L':
|
|
|
|
self.hamlib_ptt_type = Hamlib.RIG_PTT_SERIAL_DTR
|
|
|
|
self.my_rig.set_conf("dtr_state", "LOW")
|
|
|
|
self.my_rig.set_conf("ptt_type", "DTR")
|
2021-09-25 13:24:25 +00:00
|
|
|
|
2021-05-13 16:43:37 +00:00
|
|
|
elif static.HAMLIB_PTT_TYPE == 'RTS':
|
|
|
|
self.hamlib_ptt_type = Hamlib.RIG_PTT_SERIAL_RTS
|
|
|
|
self.my_rig.set_conf("dtr_state", "OFF")
|
2021-09-25 13:24:25 +00:00
|
|
|
self.my_rig.set_conf("ptt_type", "RTS")
|
|
|
|
|
2021-09-25 11:33:13 +00:00
|
|
|
elif static.HAMLIB_PTT_TYPE == 'PARALLEL':
|
2021-05-13 16:43:37 +00:00
|
|
|
self.hamlib_ptt_type = Hamlib.RIG_PTT_PARALLEL
|
2021-09-25 13:24:25 +00:00
|
|
|
|
2021-09-25 11:33:13 +00:00
|
|
|
elif static.HAMLIB_PTT_TYPE == 'MICDATA':
|
2021-05-13 16:43:37 +00:00
|
|
|
self.hamlib_ptt_type = Hamlib.RIG_PTT_RIG_MICDATA
|
2021-09-25 13:24:25 +00:00
|
|
|
|
2021-09-25 11:33:13 +00:00
|
|
|
elif static.HAMLIB_PTT_TYPE == 'CM108':
|
2021-05-13 16:43:37 +00:00
|
|
|
self.hamlib_ptt_type = Hamlib.RIG_PTT_CM108
|
2021-09-25 13:24:25 +00:00
|
|
|
|
2021-05-13 16:43:37 +00:00
|
|
|
else: # static.HAMLIB_PTT_TYPE == 'RIG_PTT_NONE':
|
|
|
|
self.hamlib_ptt_type = Hamlib.RIG_PTT_NONE
|
2021-03-18 10:39:12 +00:00
|
|
|
|
2021-05-13 16:43:37 +00:00
|
|
|
self.my_rig.open()
|
2021-09-10 16:56:33 +00:00
|
|
|
atexit.register(self.my_rig.close)
|
2021-09-25 13:24:25 +00:00
|
|
|
|
2021-09-10 15:59:01 +00:00
|
|
|
# set rig mode to USB
|
|
|
|
self.my_rig.set_mode(Hamlib.RIG_MODE_USB)
|
2021-09-25 13:24:25 +00:00
|
|
|
|
2021-09-23 15:49:45 +00:00
|
|
|
# start thread for getting hamlib data
|
2021-09-25 13:24:25 +00:00
|
|
|
HAMLIB_THREAD = threading.Thread(
|
|
|
|
target=self.get_radio_stats, name="HAMLIB_THREAD")
|
2021-09-23 15:49:45 +00:00
|
|
|
HAMLIB_THREAD.start()
|
2021-09-25 13:24:25 +00:00
|
|
|
|
2021-05-13 16:43:37 +00:00
|
|
|
except:
|
2021-09-06 16:50:12 +00:00
|
|
|
print("Unexpected error:", sys.exc_info()[0])
|
2021-05-13 16:43:37 +00:00
|
|
|
print("can't open rig")
|
2021-09-25 11:33:13 +00:00
|
|
|
sys.exit("hamlib error")
|
2021-09-06 16:50:12 +00:00
|
|
|
|
2021-09-25 13:24:25 +00:00
|
|
|
|
2021-03-12 13:14:36 +00:00
|
|
|
# --------------------------------------------------------------------------------------------------------
|
2021-09-25 13:24:25 +00:00
|
|
|
|
2021-05-09 09:36:08 +00:00
|
|
|
def ptt_and_wait(self, state):
|
2021-09-08 17:27:45 +00:00
|
|
|
static.PTT_STATE = state
|
2021-09-25 13:24:25 +00:00
|
|
|
|
2021-05-09 09:36:08 +00:00
|
|
|
if state:
|
2021-09-08 17:27:45 +00:00
|
|
|
|
2021-09-06 16:50:12 +00:00
|
|
|
self.my_rig.set_ptt(self.hamlib_ptt_type, 1)
|
2021-09-25 13:24:25 +00:00
|
|
|
# rigctld.ptt_enable()
|
2021-09-08 17:27:45 +00:00
|
|
|
ptt_toggle_timeout = time.time() + 0.5
|
|
|
|
while time.time() < ptt_toggle_timeout:
|
2021-05-09 09:36:08 +00:00
|
|
|
pass
|
|
|
|
|
|
|
|
else:
|
2021-09-25 13:24:25 +00:00
|
|
|
|
2021-09-08 17:27:45 +00:00
|
|
|
ptt_toggle_timeout = time.time() + 0.5
|
|
|
|
while time.time() < ptt_toggle_timeout:
|
2021-05-09 09:36:08 +00:00
|
|
|
pass
|
2021-09-25 13:24:25 +00:00
|
|
|
|
2021-09-06 16:50:12 +00:00
|
|
|
self.my_rig.set_ptt(self.hamlib_ptt_type, 0)
|
2021-09-25 13:24:25 +00:00
|
|
|
# rigctld.ptt_disable()
|
2021-05-09 09:36:08 +00:00
|
|
|
|
2021-09-25 13:24:25 +00:00
|
|
|
return False
|
2021-05-09 09:36:08 +00:00
|
|
|
|
2021-03-09 19:56:17 +00:00
|
|
|
def play_audio(self):
|
2021-03-12 13:14:36 +00:00
|
|
|
|
|
|
|
while True:
|
2021-03-09 20:35:52 +00:00
|
|
|
time.sleep(0.01)
|
|
|
|
|
2021-09-25 13:24:25 +00:00
|
|
|
# while len(self.streambuffer) > 0:
|
2021-09-08 17:27:45 +00:00
|
|
|
# time.sleep(0.01)
|
|
|
|
if len(self.streambuffer) > 0 and self.audio_writing_to_stream:
|
|
|
|
self.streambuffer = bytes(self.streambuffer)
|
2021-09-25 13:24:25 +00:00
|
|
|
|
2021-09-08 17:27:45 +00:00
|
|
|
# we need t wait a little bit until the buffer is filled. If we are not waiting, we are sending empty data
|
|
|
|
time.sleep(0.1)
|
|
|
|
self.stream_tx.write(self.streambuffer)
|
|
|
|
# clear stream buffer after sending
|
|
|
|
self.streambuffer = bytes()
|
2021-09-25 13:24:25 +00:00
|
|
|
|
2021-03-09 20:35:52 +00:00
|
|
|
self.audio_writing_to_stream = False
|
2021-03-12 13:14:36 +00:00
|
|
|
# --------------------------------------------------------------------------------------------------------
|
|
|
|
|
2021-08-14 18:59:12 +00:00
|
|
|
def transmit_signalling(self, data_out, count):
|
2021-08-14 19:23:43 +00:00
|
|
|
state_before_transmit = static.CHANNEL_STATE
|
|
|
|
static.CHANNEL_STATE = 'SENDING_SIGNALLING'
|
2021-09-25 13:24:25 +00:00
|
|
|
# print(static.CHANNEL_STATE)
|
2021-09-27 15:33:59 +00:00
|
|
|
freedv_signalling_mode = 14
|
|
|
|
|
2021-01-21 07:33:45 +00:00
|
|
|
self.c_lib.freedv_open.restype = ctypes.POINTER(ctypes.c_ubyte)
|
2021-09-27 15:33:59 +00:00
|
|
|
freedv = self.c_lib.freedv_open(freedv_signalling_mode)
|
2021-09-26 15:51:11 +00:00
|
|
|
bytes_per_frame = int(self.c_lib.freedv_get_bits_per_modem_frame(freedv) / 8)
|
2021-03-12 13:14:36 +00:00
|
|
|
payload_per_frame = bytes_per_frame - 2
|
2021-01-21 07:33:45 +00:00
|
|
|
n_nom_modem_samples = self.c_lib.freedv_get_n_nom_modem_samples(freedv)
|
2021-09-25 13:24:25 +00:00
|
|
|
n_tx_modem_samples = self.c_lib.freedv_get_n_tx_modem_samples(freedv)
|
2021-09-26 15:51:11 +00:00
|
|
|
n_tx_preamble_modem_samples = self.c_lib.freedv_get_n_tx_preamble_modem_samples(freedv)
|
|
|
|
n_tx_postamble_modem_samples = self.c_lib.freedv_get_n_tx_postamble_modem_samples(freedv)
|
2021-09-25 13:24:25 +00:00
|
|
|
|
2021-01-21 07:33:45 +00:00
|
|
|
mod_out = ctypes.c_short * n_tx_modem_samples
|
|
|
|
mod_out = mod_out()
|
2021-09-25 13:24:25 +00:00
|
|
|
mod_out_preamble = ctypes.c_short * n_tx_preamble_modem_samples
|
2021-01-30 16:25:24 +00:00
|
|
|
mod_out_preamble = mod_out_preamble()
|
2021-09-25 13:24:25 +00:00
|
|
|
mod_out_postamble = ctypes.c_short * n_tx_postamble_modem_samples
|
2021-04-11 16:34:03 +00:00
|
|
|
mod_out_postamble = mod_out_postamble()
|
|
|
|
|
2021-09-25 13:24:25 +00:00
|
|
|
buffer = bytearray(payload_per_frame)
|
|
|
|
# set buffersize to length of data which will be send
|
|
|
|
buffer[:len(data_out)] = data_out
|
2021-01-21 07:33:45 +00:00
|
|
|
|
2021-09-26 15:51:11 +00:00
|
|
|
crc = ctypes.c_ushort(self.c_lib.freedv_gen_crc16(bytes(buffer), payload_per_frame)) # generate CRC16
|
2021-09-25 13:24:25 +00:00
|
|
|
# convert crc to 2 byte hex string
|
|
|
|
crc = crc.value.to_bytes(2, byteorder='big')
|
2021-01-21 07:33:45 +00:00
|
|
|
buffer += crc # append crc16 to buffer
|
|
|
|
data = (ctypes.c_ubyte * bytes_per_frame).from_buffer_copy(buffer)
|
2021-03-12 13:14:36 +00:00
|
|
|
|
|
|
|
self.c_lib.freedv_rawdatapreambletx(freedv, mod_out_preamble)
|
2021-09-25 13:24:25 +00:00
|
|
|
# modulate DATA and safe it into mod_out pointer
|
|
|
|
self.c_lib.freedv_rawdatatx(freedv, mod_out, data)
|
2021-04-11 16:34:03 +00:00
|
|
|
self.c_lib.freedv_rawdatapostambletx(freedv, mod_out_postamble)
|
|
|
|
|
2021-05-09 09:36:08 +00:00
|
|
|
self.streambuffer = bytearray()
|
|
|
|
self.streambuffer += bytes(mod_out_preamble)
|
|
|
|
self.streambuffer += bytes(mod_out)
|
|
|
|
self.streambuffer += bytes(mod_out_postamble)
|
2021-09-25 13:24:25 +00:00
|
|
|
|
2021-09-26 15:51:11 +00:00
|
|
|
converted_audio = audioop.ratecv(self.streambuffer, 2, 1, static.MODEM_SAMPLE_RATE, static.AUDIO_SAMPLE_RATE_TX, None)
|
2021-05-09 14:11:59 +00:00
|
|
|
self.streambuffer = bytes(converted_audio[0])
|
2021-08-14 18:59:12 +00:00
|
|
|
# append frame again with as much as in count defined
|
|
|
|
for i in range(1, count):
|
|
|
|
self.streambuffer += bytes(converted_audio[0])
|
2021-09-25 13:24:25 +00:00
|
|
|
|
|
|
|
|
2021-09-08 17:27:45 +00:00
|
|
|
while self.ptt_and_wait(True):
|
|
|
|
pass
|
2021-03-09 20:35:52 +00:00
|
|
|
self.audio_writing_to_stream = True
|
2021-09-25 13:24:25 +00:00
|
|
|
|
2021-03-12 13:14:36 +00:00
|
|
|
# wait until audio has been processed
|
2021-05-09 09:36:08 +00:00
|
|
|
while self.audio_writing_to_stream:
|
2021-03-09 20:35:52 +00:00
|
|
|
time.sleep(0.01)
|
|
|
|
static.CHANNEL_STATE = 'SENDING_SIGNALLING'
|
2021-03-12 13:14:36 +00:00
|
|
|
|
2021-09-25 13:24:25 +00:00
|
|
|
self.ptt_and_wait(False)
|
|
|
|
# we have a problem with the receiving state
|
2021-07-28 16:43:41 +00:00
|
|
|
##static.CHANNEL_STATE = state_before_transmit
|
|
|
|
if state_before_transmit != 'RECEIVING_DATA':
|
|
|
|
static.CHANNEL_STATE = 'RECEIVING_SIGNALLING'
|
|
|
|
else:
|
|
|
|
static.CHANNEL_STATE = state_before_transmit
|
2021-09-25 13:24:25 +00:00
|
|
|
|
2021-03-12 13:14:36 +00:00
|
|
|
self.c_lib.freedv_close(freedv)
|
2021-09-27 15:33:59 +00:00
|
|
|
|
|
|
|
return True
|
2021-03-12 13:14:36 +00:00
|
|
|
# --------------------------------------------------------------------------------------------------------
|
|
|
|
# GET ARQ BURST FRAME VOM BUFFER AND MODULATE IT
|
|
|
|
|
2021-09-26 15:51:11 +00:00
|
|
|
def transmit_arq_burst(self, mode, frames):
|
2021-09-25 13:24:25 +00:00
|
|
|
|
2021-03-15 18:43:04 +00:00
|
|
|
# we could place this timing part inside the modem...
|
|
|
|
# lets see if this is a good idea..
|
2021-09-25 13:24:25 +00:00
|
|
|
# we need to update our timeout timestamp
|
|
|
|
|
2021-03-04 13:28:01 +00:00
|
|
|
state_before_transmit = static.CHANNEL_STATE
|
2021-02-24 16:29:08 +00:00
|
|
|
static.CHANNEL_STATE = 'SENDING_DATA'
|
2021-02-09 11:35:24 +00:00
|
|
|
|
2021-01-16 19:43:10 +00:00
|
|
|
self.c_lib.freedv_open.restype = ctypes.POINTER(ctypes.c_ubyte)
|
2021-09-26 15:51:11 +00:00
|
|
|
freedv = self.c_lib.freedv_open(mode)
|
2021-03-12 13:14:36 +00:00
|
|
|
|
2021-01-16 19:43:10 +00:00
|
|
|
n_nom_modem_samples = self.c_lib.freedv_get_n_nom_modem_samples(freedv)
|
2021-09-26 15:51:11 +00:00
|
|
|
#get n_tx_modem_samples which defines the size of the modulation object
|
2021-09-25 13:24:25 +00:00
|
|
|
n_tx_modem_samples = self.c_lib.freedv_get_n_tx_modem_samples(freedv)
|
2021-09-26 15:51:11 +00:00
|
|
|
n_tx_preamble_modem_samples = self.c_lib.freedv_get_n_tx_preamble_modem_samples(freedv)
|
|
|
|
n_tx_postamble_modem_samples = self.c_lib.freedv_get_n_tx_postamble_modem_samples(freedv)
|
|
|
|
bytes_per_frame = int(self.c_lib.freedv_get_bits_per_modem_frame(freedv) / 8)
|
|
|
|
payload_per_frame = bytes_per_frame - 2
|
|
|
|
|
|
|
|
|
2021-01-16 19:43:10 +00:00
|
|
|
mod_out = ctypes.c_short * n_tx_modem_samples
|
|
|
|
mod_out = mod_out()
|
2021-09-25 13:24:25 +00:00
|
|
|
|
|
|
|
mod_out_preamble = ctypes.c_short * n_tx_preamble_modem_samples
|
2021-01-20 21:51:14 +00:00
|
|
|
mod_out_preamble = mod_out_preamble()
|
|
|
|
|
2021-09-25 13:24:25 +00:00
|
|
|
mod_out_postamble = ctypes.c_short * n_tx_postamble_modem_samples
|
2021-04-11 16:34:03 +00:00
|
|
|
mod_out_postamble = mod_out_postamble()
|
2021-09-25 13:24:25 +00:00
|
|
|
|
2021-05-09 14:11:59 +00:00
|
|
|
self.streambuffer = bytearray()
|
|
|
|
self.c_lib.freedv_rawdatapreambletx(freedv, mod_out_preamble)
|
|
|
|
self.streambuffer += bytes(mod_out_preamble)
|
2021-09-25 13:24:25 +00:00
|
|
|
|
|
|
|
|
2021-09-26 15:51:11 +00:00
|
|
|
# loop through list of frames per burst
|
|
|
|
for n in range(0, len(frames)):
|
2021-02-08 18:00:12 +00:00
|
|
|
|
2021-09-26 15:51:11 +00:00
|
|
|
# create TX buffer
|
|
|
|
buffer = bytearray(payload_per_frame)
|
2021-09-25 13:24:25 +00:00
|
|
|
# set buffersize to length of data which will be send
|
2021-09-26 15:51:11 +00:00
|
|
|
buffer[:len(frames[n])] = frames[n]
|
2021-03-12 13:14:36 +00:00
|
|
|
|
2021-09-26 15:51:11 +00:00
|
|
|
crc = ctypes.c_ushort(self.c_lib.freedv_gen_crc16(bytes(buffer), payload_per_frame)) # generate CRC16
|
2021-09-25 13:24:25 +00:00
|
|
|
# convert crc to 2 byte hex string
|
|
|
|
crc = crc.value.to_bytes(2, byteorder='big')
|
2021-02-08 18:00:12 +00:00
|
|
|
buffer += crc # append crc16 to buffer
|
2021-09-26 15:51:11 +00:00
|
|
|
data = (ctypes.c_ubyte * bytes_per_frame).from_buffer_copy(buffer)
|
2021-09-25 13:24:25 +00:00
|
|
|
|
|
|
|
# modulate DATA and safe it into mod_out pointer
|
|
|
|
self.c_lib.freedv_rawdatatx(freedv, mod_out, data)
|
2021-05-09 14:11:59 +00:00
|
|
|
self.streambuffer += bytes(mod_out)
|
2021-03-12 13:14:36 +00:00
|
|
|
|
2021-05-09 14:11:59 +00:00
|
|
|
self.c_lib.freedv_rawdatapostambletx(freedv, mod_out_postamble)
|
|
|
|
self.streambuffer += bytes(mod_out_postamble)
|
2021-09-25 13:24:25 +00:00
|
|
|
|
2021-09-26 15:51:11 +00:00
|
|
|
converted_audio = audioop.ratecv(self.streambuffer, 2, 1, static.MODEM_SAMPLE_RATE, static.AUDIO_SAMPLE_RATE_TX, None)
|
2021-05-09 14:11:59 +00:00
|
|
|
self.streambuffer = bytes(converted_audio[0])
|
|
|
|
|
|
|
|
# -------------- transmit audio
|
2021-09-25 13:24:25 +00:00
|
|
|
|
2021-09-08 17:27:45 +00:00
|
|
|
while self.ptt_and_wait(True):
|
|
|
|
pass
|
2021-09-08 16:04:21 +00:00
|
|
|
# this triggers writing buffer to audio stream
|
|
|
|
# this way we are able to run this non blocking
|
|
|
|
# this needs to be optimized!
|
2021-03-10 09:30:49 +00:00
|
|
|
self.audio_writing_to_stream = True
|
|
|
|
|
2021-03-12 13:14:36 +00:00
|
|
|
# wait until audio has been processed
|
2021-05-09 14:11:59 +00:00
|
|
|
while self.audio_writing_to_stream:
|
2021-03-10 09:30:49 +00:00
|
|
|
time.sleep(0.01)
|
|
|
|
static.CHANNEL_STATE = 'SENDING_DATA'
|
2021-05-09 14:11:59 +00:00
|
|
|
|
2021-02-24 16:29:08 +00:00
|
|
|
static.CHANNEL_STATE = 'RECEIVING_SIGNALLING'
|
2021-05-09 09:36:08 +00:00
|
|
|
|
|
|
|
self.ptt_and_wait(False)
|
2021-02-28 14:24:14 +00:00
|
|
|
|
2021-09-08 16:04:21 +00:00
|
|
|
# close codec2 instance
|
2021-03-12 13:14:36 +00:00
|
|
|
self.c_lib.freedv_close(freedv)
|
2021-09-27 15:33:59 +00:00
|
|
|
|
|
|
|
return True
|
2021-03-12 13:14:36 +00:00
|
|
|
# --------------------------------------------------------------------------------------------------------
|
|
|
|
|
2021-09-23 15:49:45 +00:00
|
|
|
def receive(self):
|
2021-09-27 15:33:59 +00:00
|
|
|
|
|
|
|
freedv_mode_datac0 = 14
|
|
|
|
freedv_mode_datac1 = 10
|
|
|
|
freedv_mode_datac3 = 12
|
|
|
|
|
2021-09-23 15:49:45 +00:00
|
|
|
# DATAC0
|
2021-03-12 13:14:36 +00:00
|
|
|
self.c_lib.freedv_open.restype = ctypes.POINTER(ctypes.c_ubyte)
|
2021-09-27 15:33:59 +00:00
|
|
|
datac0_freedv = self.c_lib.freedv_open(freedv_mode_datac0)
|
2021-09-23 15:49:45 +00:00
|
|
|
self.c_lib.freedv_get_bits_per_modem_frame(datac0_freedv)
|
|
|
|
datac0_bytes_per_frame = int(self.c_lib.freedv_get_bits_per_modem_frame(datac0_freedv)/8)
|
2021-09-25 13:24:25 +00:00
|
|
|
datac0_n_max_modem_samples = self.c_lib.freedv_get_n_max_modem_samples(datac0_freedv)
|
|
|
|
|
|
|
|
# bytes_per_frame
|
|
|
|
datac0_bytes_out = (ctypes.c_ubyte * datac0_bytes_per_frame)
|
|
|
|
datac0_bytes_out = datac0_bytes_out() # get pointer from bytes_out
|
|
|
|
|
|
|
|
self.c_lib.freedv_set_frames_per_burst(datac0_freedv, 1)
|
2021-09-23 15:49:45 +00:00
|
|
|
datac0_modem_stats_snr = c_float()
|
|
|
|
datac0_modem_stats_sync = c_int()
|
|
|
|
datac0_buffer = bytes()
|
2021-09-25 13:24:25 +00:00
|
|
|
|
2021-09-23 15:49:45 +00:00
|
|
|
static.FREEDV_SIGNALLING_BYTES_PER_FRAME = datac0_bytes_per_frame
|
|
|
|
static.FREEDV_SIGNALLING_PAYLOAD_PER_FRAME = datac0_bytes_per_frame - 2
|
2021-03-12 13:14:36 +00:00
|
|
|
|
2021-09-23 15:49:45 +00:00
|
|
|
# DATAC1
|
|
|
|
self.c_lib.freedv_open.restype = ctypes.POINTER(ctypes.c_ubyte)
|
2021-09-27 15:33:59 +00:00
|
|
|
datac1_freedv = self.c_lib.freedv_open(freedv_mode_datac1)
|
2021-09-23 15:49:45 +00:00
|
|
|
datac1_bytes_per_frame = int(self.c_lib.freedv_get_bits_per_modem_frame(datac1_freedv)/8)
|
2021-09-25 13:24:25 +00:00
|
|
|
datac1_n_max_modem_samples = self.c_lib.freedv_get_n_max_modem_samples(datac1_freedv)
|
|
|
|
# bytes_per_frame
|
|
|
|
datac1_bytes_out = (ctypes.c_ubyte * datac1_bytes_per_frame)
|
|
|
|
datac1_bytes_out = datac1_bytes_out() # get pointer from bytes_out
|
|
|
|
self.c_lib.freedv_set_frames_per_burst(datac1_freedv, 1)
|
2021-09-23 15:49:45 +00:00
|
|
|
datac1_modem_stats_snr = c_float()
|
|
|
|
datac1_modem_stats_sync = c_int()
|
|
|
|
datac1_buffer = bytes()
|
|
|
|
|
|
|
|
# DATAC3
|
|
|
|
self.c_lib.freedv_open.restype = ctypes.POINTER(ctypes.c_ubyte)
|
2021-09-27 15:33:59 +00:00
|
|
|
datac3_freedv = self.c_lib.freedv_open(freedv_mode_datac3)
|
2021-09-23 15:49:45 +00:00
|
|
|
datac3_bytes_per_frame = int(self.c_lib.freedv_get_bits_per_modem_frame(datac3_freedv)/8)
|
2021-09-25 13:24:25 +00:00
|
|
|
datac3_n_max_modem_samples = self.c_lib.freedv_get_n_max_modem_samples(datac3_freedv)
|
|
|
|
# bytes_per_frame
|
|
|
|
datac3_bytes_out = (ctypes.c_ubyte * datac3_bytes_per_frame)
|
|
|
|
datac3_bytes_out = datac3_bytes_out() # get pointer from bytes_out
|
|
|
|
self.c_lib.freedv_set_frames_per_burst(datac3_freedv, 1)
|
2021-09-23 15:49:45 +00:00
|
|
|
datac3_modem_stats_snr = c_float()
|
|
|
|
datac3_modem_stats_sync = c_int()
|
|
|
|
datac3_buffer = bytes()
|
|
|
|
|
|
|
|
'''
|
|
|
|
if mode == static.ARQ_DATA_CHANNEL_MODE:
|
2021-02-28 14:24:14 +00:00
|
|
|
static.FREEDV_DATA_BYTES_PER_FRAME = bytes_per_frame
|
|
|
|
static.FREEDV_DATA_PAYLOAD_PER_FRAME = bytes_per_frame - 2
|
2021-03-12 13:14:36 +00:00
|
|
|
|
|
|
|
self.c_lib.freedv_set_frames_per_burst(freedv, 0)
|
2021-02-28 14:24:14 +00:00
|
|
|
else:
|
2021-05-09 14:11:59 +00:00
|
|
|
#pass
|
|
|
|
self.c_lib.freedv_set_frames_per_burst(freedv, 0)
|
2021-09-23 15:49:45 +00:00
|
|
|
'''
|
2021-01-20 21:51:14 +00:00
|
|
|
|
2021-09-27 15:33:59 +00:00
|
|
|
while True:
|
2021-09-23 15:49:45 +00:00
|
|
|
|
|
|
|
'''
|
|
|
|
# refresh vars, so the correct parameters of the used mode are set
|
|
|
|
if mode == static.ARQ_DATA_CHANNEL_MODE:
|
|
|
|
static.FREEDV_DATA_BYTES_PER_FRAME = bytes_per_frame
|
|
|
|
static.FREEDV_DATA_PAYLOAD_PER_FRAME = bytes_per_frame - 2
|
|
|
|
'''
|
|
|
|
|
|
|
|
data_in = bytes()
|
2021-09-25 13:24:25 +00:00
|
|
|
data_in = self.stream_rx.read(1024, exception_on_overflow=False)
|
2021-09-24 15:16:38 +00:00
|
|
|
#self.fft_data = data_in
|
2021-09-25 13:24:25 +00:00
|
|
|
data_in = audioop.ratecv(data_in, 2, 1, static.AUDIO_SAMPLE_RATE_RX, static.MODEM_SAMPLE_RATE, None)
|
|
|
|
data_in = data_in[0] # .rstrip(b'\x00')
|
2021-09-24 15:16:38 +00:00
|
|
|
self.fft_data = data_in
|
2021-09-25 13:24:25 +00:00
|
|
|
|
2021-09-23 15:49:45 +00:00
|
|
|
# we need to set nin * 2 beause of byte size in array handling
|
|
|
|
datac0_nin = self.c_lib.freedv_nin(datac0_freedv) * 2
|
|
|
|
datac1_nin = self.c_lib.freedv_nin(datac1_freedv) * 2
|
|
|
|
datac3_nin = self.c_lib.freedv_nin(datac3_freedv) * 2
|
2021-09-25 13:24:25 +00:00
|
|
|
|
2021-09-23 15:49:45 +00:00
|
|
|
# refill buffer only if every mode has worked with its data
|
|
|
|
if (len(datac0_buffer) < (datac0_nin*2)) and (len(datac1_buffer) < (datac1_nin*2)) and (len(datac3_buffer) < (datac3_nin*2)):
|
|
|
|
datac0_buffer += data_in
|
|
|
|
datac1_buffer += data_in
|
|
|
|
datac3_buffer += data_in
|
2021-09-25 13:24:25 +00:00
|
|
|
|
|
|
|
# DECODING DATAC0
|
2021-09-23 15:49:45 +00:00
|
|
|
if len(datac0_buffer) >= (datac0_nin):
|
2021-09-25 13:24:25 +00:00
|
|
|
|
2021-09-23 15:49:45 +00:00
|
|
|
datac0_audio = datac0_buffer[:datac0_nin]
|
2021-09-25 13:24:25 +00:00
|
|
|
datac0_buffer = datac0_buffer[datac0_nin:]
|
|
|
|
# print(len(datac0_audio))
|
2021-09-23 15:49:45 +00:00
|
|
|
self.c_lib.freedv_rawdatarx.argtype = [ctypes.POINTER(ctypes.c_ubyte), datac0_bytes_out, datac0_audio]
|
2021-09-25 13:24:25 +00:00
|
|
|
nbytes = self.c_lib.freedv_rawdatarx(datac0_freedv, datac0_bytes_out, datac0_audio) # demodulate audio
|
2021-09-23 15:49:45 +00:00
|
|
|
sync = self.c_lib.freedv_get_rx_status(datac0_freedv)
|
2021-09-25 13:24:25 +00:00
|
|
|
if sync != 0 and nbytes != 0:
|
|
|
|
|
|
|
|
# calculate snr and scatter
|
2021-09-30 19:49:22 +00:00
|
|
|
self.get_scatter(datac0_freedv)
|
2021-09-23 15:49:45 +00:00
|
|
|
self.calculate_snr(datac0_freedv)
|
2021-03-10 09:30:49 +00:00
|
|
|
|
2021-09-26 15:51:11 +00:00
|
|
|
datac0_task = threading.Thread(target=self.process_data, args=[datac0_bytes_out, datac0_freedv, datac0_bytes_per_frame])
|
|
|
|
#datac0_task.start()
|
|
|
|
self.process_data(datac0_bytes_out, datac0_freedv, datac0_bytes_per_frame)
|
2021-03-12 13:14:36 +00:00
|
|
|
|
2021-09-25 13:24:25 +00:00
|
|
|
# DECODING DATAC1
|
2021-09-23 15:49:45 +00:00
|
|
|
if len(datac1_buffer) >= (datac1_nin):
|
|
|
|
datac1_audio = datac1_buffer[:datac1_nin]
|
2021-09-25 13:24:25 +00:00
|
|
|
datac1_buffer = datac1_buffer[datac1_nin:]
|
|
|
|
# print(len(datac1_audio))
|
2021-09-23 15:49:45 +00:00
|
|
|
self.c_lib.freedv_rawdatarx.argtype = [ctypes.POINTER(ctypes.c_ubyte), datac1_bytes_out, datac1_audio]
|
2021-09-25 13:24:25 +00:00
|
|
|
nbytes = self.c_lib.freedv_rawdatarx(datac1_freedv, datac1_bytes_out, datac1_audio) # demodulate audio
|
|
|
|
|
2021-09-23 15:49:45 +00:00
|
|
|
sync = self.c_lib.freedv_get_rx_status(datac1_freedv)
|
|
|
|
if sync != 0 and nbytes != 0:
|
2021-09-25 13:24:25 +00:00
|
|
|
|
|
|
|
# calculate snr and scatter
|
2021-09-30 19:49:22 +00:00
|
|
|
self.get_scatter(datac1_freedv)
|
2021-09-23 15:49:45 +00:00
|
|
|
self.calculate_snr(datac1_freedv)
|
2021-03-19 14:28:55 +00:00
|
|
|
|
2021-09-26 15:51:11 +00:00
|
|
|
datac1_task = threading.Thread(target=self.process_data, args=[datac1_bytes_out, datac1_freedv, datac1_bytes_per_frame])
|
2021-09-25 13:24:25 +00:00
|
|
|
datac1_task.start()
|
2021-09-26 15:51:11 +00:00
|
|
|
#print(bytes(datac1_bytes_out))
|
|
|
|
#self.process_data(datac1_bytes_out, datac1_freedv, datac1_bytes_per_frame)
|
2021-09-25 13:24:25 +00:00
|
|
|
|
|
|
|
# DECODING DATAC3
|
2021-09-23 15:49:45 +00:00
|
|
|
if len(datac3_buffer) >= (datac3_nin):
|
|
|
|
datac3_audio = datac3_buffer[:datac3_nin]
|
2021-09-25 13:24:25 +00:00
|
|
|
datac3_buffer = datac3_buffer[datac3_nin:]
|
2021-09-23 15:49:45 +00:00
|
|
|
self.c_lib.freedv_rawdatarx.argtype = [ctypes.POINTER(ctypes.c_ubyte), datac3_bytes_out, datac3_audio]
|
2021-09-25 13:24:25 +00:00
|
|
|
nbytes = self.c_lib.freedv_rawdatarx(datac3_freedv, datac3_bytes_out, datac3_audio) # demodulate audio
|
|
|
|
|
2021-09-23 15:49:45 +00:00
|
|
|
sync = self.c_lib.freedv_get_rx_status(datac3_freedv)
|
|
|
|
if sync != 0 and nbytes != 0:
|
2021-09-25 13:24:25 +00:00
|
|
|
|
|
|
|
# calculate snr and scatter
|
2021-09-30 19:49:22 +00:00
|
|
|
#self.get_scatter(datac3_freedv)
|
2021-09-23 15:49:45 +00:00
|
|
|
self.calculate_snr(datac3_freedv)
|
|
|
|
|
2021-09-26 15:51:11 +00:00
|
|
|
datac3_task = threading.Thread(target=self.process_data, args=[datac3_bytes_out, datac3_freedv, datac3_bytes_per_frame])
|
2021-09-23 15:49:45 +00:00
|
|
|
datac3_task.start()
|
2021-09-25 13:24:25 +00:00
|
|
|
|
2021-03-09 10:05:59 +00:00
|
|
|
# forward data only if broadcast or we are the receiver
|
2021-03-17 10:22:06 +00:00
|
|
|
# bytes_out[1:2] == callsign check for signalling frames, bytes_out[6:7] == callsign check for data frames, bytes_out[1:2] == b'\x01' --> broadcasts like CQ
|
2021-09-26 15:51:11 +00:00
|
|
|
# we could also create an own function, which returns True. In this case we could add callsign blacklists, whitelists and so on
|
|
|
|
|
|
|
|
def process_data(self, bytes_out, freedv, bytes_per_frame):
|
2021-09-25 13:24:25 +00:00
|
|
|
|
2021-09-23 15:49:45 +00:00
|
|
|
if bytes(bytes_out[1:2]) == static.MYCALLSIGN_CRC8 or bytes(bytes_out[6:7]) == static.MYCALLSIGN_CRC8 or bytes(bytes_out[1:2]) == b'\x01':
|
2021-09-25 13:24:25 +00:00
|
|
|
|
2021-09-26 15:51:11 +00:00
|
|
|
|
2021-09-25 13:24:25 +00:00
|
|
|
# CHECK IF FRAMETYPE IS BETWEEN 10 and 50 ------------------------
|
|
|
|
frametype = int.from_bytes(bytes(bytes_out[:1]), "big")
|
|
|
|
frame = frametype - 10
|
|
|
|
n_frames_per_burst = int.from_bytes(bytes(bytes_out[1:2]), "big")
|
|
|
|
|
|
|
|
#self.c_lib.freedv_set_frames_per_burst(freedv_data, n_frames_per_burst);
|
|
|
|
|
|
|
|
if 50 >= frametype >= 10:
|
2021-09-26 15:51:11 +00:00
|
|
|
# force, if we don't simulate a loss of the third frame
|
|
|
|
force = True
|
2021-09-25 13:24:25 +00:00
|
|
|
if frame != 3 or force == True:
|
|
|
|
|
|
|
|
# send payload data to arq checker without CRC16
|
2021-09-26 15:51:11 +00:00
|
|
|
data_handler.arq_data_received(bytes(bytes_out[:-2]), bytes_per_frame)
|
2021-09-25 13:24:25 +00:00
|
|
|
|
|
|
|
#print("static.ARQ_RX_BURST_BUFFER.count(None) " + str(static.ARQ_RX_BURST_BUFFER.count(None)))
|
2021-09-26 15:51:11 +00:00
|
|
|
if static.RX_BURST_BUFFER.count(None) <= 1:
|
2021-09-25 13:24:25 +00:00
|
|
|
logging.debug("FULL BURST BUFFER ---> UNSYNC")
|
|
|
|
self.c_lib.freedv_set_sync(freedv, 0)
|
|
|
|
|
|
|
|
else:
|
|
|
|
logging.critical(
|
|
|
|
"---------------------------SIMULATED MISSING FRAME")
|
|
|
|
force = True
|
|
|
|
|
|
|
|
# BURST ACK
|
|
|
|
elif frametype == 60:
|
|
|
|
logging.debug("ACK RECEIVED....")
|
|
|
|
data_handler.burst_ack_received()
|
|
|
|
|
|
|
|
# FRAME ACK
|
|
|
|
elif frametype == 61:
|
|
|
|
logging.debug("FRAME ACK RECEIVED....")
|
|
|
|
data_handler.frame_ack_received()
|
|
|
|
|
|
|
|
# FRAME RPT
|
|
|
|
elif frametype == 62:
|
|
|
|
logging.debug("REPEAT REQUEST RECEIVED....")
|
|
|
|
data_handler.burst_rpt_received(bytes_out[:-2])
|
|
|
|
|
|
|
|
# CQ FRAME
|
|
|
|
elif frametype == 200:
|
|
|
|
logging.debug("CQ RECEIVED....")
|
|
|
|
data_handler.received_cq(bytes_out[:-2])
|
|
|
|
|
|
|
|
# PING FRAME
|
|
|
|
elif frametype == 210:
|
|
|
|
logging.debug("PING RECEIVED....")
|
|
|
|
data_handler.received_ping(bytes_out[:-2])
|
|
|
|
|
|
|
|
# PING ACK
|
|
|
|
elif frametype == 211:
|
|
|
|
logging.debug("PING ACK RECEIVED....")
|
|
|
|
data_handler.received_ping_ack(bytes_out[:-2])
|
|
|
|
|
|
|
|
# ARQ FILE TRANSFER RECEIVED!
|
|
|
|
elif frametype == 225:
|
|
|
|
logging.debug("ARQ arq_received_data_channel_opener RECEIVED")
|
|
|
|
data_handler.arq_received_data_channel_opener(bytes_out[:-2])
|
|
|
|
|
|
|
|
# ARQ CHANNEL IS OPENED
|
|
|
|
elif frametype == 226:
|
|
|
|
logging.debug("ARQ arq_received_channel_is_open RECEIVED")
|
|
|
|
data_handler.arq_received_channel_is_open(bytes_out[:-2])
|
|
|
|
|
|
|
|
# ARQ CONNECT ACK / KEEP ALIVE
|
|
|
|
elif frametype == 230:
|
|
|
|
logging.debug("BEACON RECEIVED")
|
|
|
|
data_handler.received_beacon(bytes_out[:-2])
|
|
|
|
|
|
|
|
else:
|
|
|
|
logging.info("OTHER FRAME: " + str(bytes_out[:-2]))
|
|
|
|
print(frametype)
|
|
|
|
|
|
|
|
# DO UNSYNC AFTER LAST BURST by checking the frame nums against the total frames per burst
|
|
|
|
if frame == n_frames_per_burst:
|
|
|
|
|
|
|
|
logging.debug("LAST FRAME ---> UNSYNC")
|
|
|
|
self.c_lib.freedv_set_sync(freedv, 0) # FORCE UNSYNC
|
|
|
|
|
2021-03-12 13:14:36 +00:00
|
|
|
|
2021-09-23 15:49:45 +00:00
|
|
|
else:
|
2021-09-25 13:24:25 +00:00
|
|
|
# for debugging purposes to receive all data
|
2021-09-23 15:49:45 +00:00
|
|
|
pass
|
2021-09-25 13:24:25 +00:00
|
|
|
# print(bytes_out[:-2])
|
|
|
|
|
2021-08-06 20:09:16 +00:00
|
|
|
def get_scatter(self, freedv):
|
|
|
|
modemStats = MODEMSTATS()
|
|
|
|
self.c_lib.freedv_get_modem_extended_stats.restype = None
|
2021-09-26 15:51:11 +00:00
|
|
|
self.c_lib.freedv_get_modem_extended_stats(freedv, ctypes.byref(modemStats))
|
2021-09-25 13:24:25 +00:00
|
|
|
|
2021-08-06 20:09:16 +00:00
|
|
|
scatterdata = []
|
2021-09-30 19:49:22 +00:00
|
|
|
scatterdata_small = []
|
2021-08-06 20:09:16 +00:00
|
|
|
for i in range(MODEM_STATS_NC_MAX):
|
2021-09-25 13:24:25 +00:00
|
|
|
for j in range(MODEM_STATS_NR_MAX):
|
|
|
|
# check if odd or not to get every 2nd item for x
|
|
|
|
if (j % 2) == 0:
|
2021-10-01 17:05:43 +00:00
|
|
|
xsymbols = round(modemStats.rx_symbols[i][j]/1000)
|
|
|
|
ysymbols = round(modemStats.rx_symbols[i][j+1]/1000)
|
2021-08-07 09:14:49 +00:00
|
|
|
# check if value 0.0 or has real data
|
2021-08-06 20:09:16 +00:00
|
|
|
if xsymbols != 0.0 and ysymbols != 0.0:
|
2021-09-25 13:24:25 +00:00
|
|
|
scatterdata.append({"x": xsymbols, "y": ysymbols})
|
|
|
|
|
2021-08-07 09:14:49 +00:00
|
|
|
# only append scatter data if new data arrived
|
2021-09-30 19:49:22 +00:00
|
|
|
if 150 > len(scatterdata) > 0:
|
2021-09-25 13:24:25 +00:00
|
|
|
static.SCATTER = scatterdata
|
2021-09-30 19:49:22 +00:00
|
|
|
else:
|
2021-10-01 17:05:43 +00:00
|
|
|
# only take every tenth data point
|
2021-09-30 19:49:22 +00:00
|
|
|
scatterdata_small = scatterdata[::10]
|
|
|
|
static.SCATTER = scatterdata_small
|
2021-10-01 17:05:43 +00:00
|
|
|
|
|
|
|
|
2021-03-12 13:14:36 +00:00
|
|
|
def calculate_ber(self, freedv):
|
2021-02-28 18:13:47 +00:00
|
|
|
Tbits = self.c_lib.freedv_get_total_bits(freedv)
|
|
|
|
Terrs = self.c_lib.freedv_get_total_bit_errors(freedv)
|
2021-09-25 13:24:25 +00:00
|
|
|
|
2021-02-28 18:13:47 +00:00
|
|
|
if Tbits != 0:
|
2021-03-12 13:14:36 +00:00
|
|
|
ber = (Terrs / Tbits) * 100
|
2021-02-28 18:34:36 +00:00
|
|
|
static.BER = int(ber)
|
2021-03-12 13:14:36 +00:00
|
|
|
|
|
|
|
self.c_lib.freedv_set_total_bit_errors(freedv, 0)
|
|
|
|
self.c_lib.freedv_set_total_bits(freedv, 0)
|
2021-09-25 13:24:25 +00:00
|
|
|
|
2021-03-16 15:37:23 +00:00
|
|
|
def calculate_snr(self, freedv):
|
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
|
|
|
|
|
|
|
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
|
2021-03-19 14:28:55 +00:00
|
|
|
try:
|
2021-09-25 13:24:25 +00:00
|
|
|
static.SNR = round(modem_stats_snr, 1)
|
2021-03-19 14:28:55 +00:00
|
|
|
except:
|
|
|
|
static.SNR = 0
|
2021-09-25 13:24:25 +00:00
|
|
|
|
2021-05-29 21:19:50 +00:00
|
|
|
def get_radio_stats(self):
|
2021-09-24 15:16:38 +00:00
|
|
|
while True:
|
|
|
|
time.sleep(0.1)
|
|
|
|
static.HAMLIB_FREQUENCY = int(self.my_rig.get_freq())
|
|
|
|
(hamlib_mode, static.HAMLIB_BANDWITH) = self.my_rig.get_mode()
|
|
|
|
static.HAMLIB_MODE = Hamlib.rig_strrmode(hamlib_mode)
|
2021-09-06 16:50:12 +00:00
|
|
|
#static.HAMLIB_FREQUENCY = rigctld.get_frequency()
|
|
|
|
#static.HAMLIB_MODE = rigctld.get_mode()[0]
|
|
|
|
#static.HAMLIB_BANDWITH = rigctld.get_mode()[1]
|
2021-09-25 13:24:25 +00:00
|
|
|
|
2021-09-24 15:16:38 +00:00
|
|
|
def calculate_fft(self):
|
|
|
|
while True:
|
|
|
|
time.sleep(0.01)
|
|
|
|
# WE NEED TO OPTIMIZE THIS!
|
|
|
|
data_in = self.fft_data
|
2021-09-25 13:24:25 +00:00
|
|
|
|
2021-09-24 15:16:38 +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-09-25 13:24:25 +00:00
|
|
|
# set value 0 to 1 to avoid division by zero
|
2021-09-24 15:16:38 +00:00
|
|
|
fftarray[fftarray == 0] = 1
|
|
|
|
dfft = 10.*np.log10(abs(fftarray))
|
|
|
|
dfftlist = dfft.tolist()
|
2021-09-25 13:24:25 +00:00
|
|
|
|
2021-09-24 15:16:38 +00:00
|
|
|
# send fft only if receiving
|
|
|
|
if static.CHANNEL_STATE == 'RECEIVING_SIGNALLING' or static.CHANNEL_STATE == 'RECEIVING_DATA':
|
|
|
|
#static.FFT = dfftlist[20:100]
|
|
|
|
static.FFT = dfftlist
|
|
|
|
except:
|
|
|
|
print("setting fft = 0")
|
|
|
|
# else 0
|
|
|
|
static.FFT = [0] * 400
|
2021-09-27 15:33:59 +00:00
|
|
|
|