FreeDATA/modem.py

424 lines
20 KiB
Python
Raw Normal View History

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
"""
import ctypes
from ctypes import *
import pathlib
import pyaudio
2021-02-16 13:23:57 +00:00
import audioop
#import sys
2020-12-26 18:27:09 +00:00
import logging
import time
import threading
2020-12-23 16:48:54 +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
import Hamlib
2021-02-16 13:23:57 +00:00
2020-12-23 16:48:54 +00:00
class RF():
2021-01-30 16:25:24 +00:00
def __init__(self):
2021-01-07 08:28:26 +00:00
#-------------------------------------------- LOAD FREEDV
2020-12-26 10:02:14 +00:00
libname = pathlib.Path().absolute() / "codec2/build_linux/src/libcodec2.so"
2020-12-23 16:48:54 +00:00
self.c_lib = ctypes.CDLL(libname)
2021-01-07 08:28:26 +00:00
#--------------------------------------------CREATE PYAUDIO INSTANCE
2021-01-05 14:03:41 +00:00
self.p = pyaudio.PyAudio()
2021-01-07 08:28:26 +00:00
#--------------------------------------------GET SUPPORTED SAMPLE RATES FROM SOUND DEVICE
2021-01-30 16:25:24 +00:00
#static.AUDIO_SAMPLE_RATE_RX = int(self.p.get_device_info_by_index(static.AUDIO_INPUT_DEVICE)['defaultSampleRate'])
#static.AUDIO_SAMPLE_RATE_TX = int(self.p.get_device_info_by_index(static.AUDIO_OUTPUT_DEVICE)['defaultSampleRate'])
static.AUDIO_SAMPLE_RATE_TX = 8000
2021-02-01 20:46:33 +00:00
static.AUDIO_SAMPLE_RATE_RX = 8000
2021-01-07 08:28:26 +00:00
#--------------------------------------------OPEN AUDIO CHANNEL RX
2021-01-05 14:03:41 +00:00
self.stream_rx = self.p.open(format=pyaudio.paInt16,
channels=static.AUDIO_CHANNELS,
2021-01-07 08:28:26 +00:00
rate=static.AUDIO_SAMPLE_RATE_RX,
frames_per_buffer=static.AUDIO_FRAMES_PER_BUFFER,
2021-01-05 14:03:41 +00:00
input=True,
input_device_index=static.AUDIO_INPUT_DEVICE,
)
#--------------------------------------------OPEN AUDIO CHANNEL TX
2021-01-06 17:01:54 +00:00
self.stream_tx = self.p.open(format=pyaudio.paInt16,
channels=1,
2021-01-07 08:28:26 +00:00
rate=static.AUDIO_SAMPLE_RATE_TX,
2021-01-06 17:01:54 +00:00
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-01-30 16:25:24 +00:00
#--------------------------------------------START DECODER THREAD
FREEDV_DECODER_THREAD = threading.Thread(target=self.receive, args=[static.FREEDV_DATA_MODE,static.FREEDV_SIGNALLING_MODE], name="FREEDV_DECODER_THREAD")
FREEDV_DECODER_THREAD.start()
#--------------------------------------------CONFIGURE HAMLIB
Hamlib.rig_set_debug(Hamlib.RIG_DEBUG_NONE)
# Init RIG_MODEL_DUMMY
self.my_rig = Hamlib.Rig(Hamlib.RIG_MODEL_DUMMY)
self.my_rig.set_conf("rig_pathname", "/dev/Rig")
self.my_rig.set_conf("retry", "5")
self.my_rig.open ()
if static.HAMLIB_PTT_TYPE == 'RIG_PTT_RIG':
self.hamlib_ptt_type = Hamlib.RIG_PTT_RIG
elif static.HAMLIB_PTT_TYPE == 'RIG_PTT_SERIAL_DTR':
self.hamlib_ptt_type = Hamlib.RIG_PTT_SERIAL_DTR
elif static.HAMLIB_PTT_TYPE == 'RIG_PTT_SERIAL_RTS':
self.hamlib_ptt_type = Hamlib.RIG_PTT_SERIAL_RTS
elif static.HAMLIB_PTT_TYPE == 'RIG_PTT_PARALLEL':
self.hamlib_ptt_type = Hamlib.RIG_PTT_PARALLEL
elif static.HAMLIB_PTT_TYPE == 'RIG_PTT_RIG_MICDATA':
self.hamlib_ptt_type = Hamlib.RIG_PTT_RIG_MICDATA
elif static.HAMLIB_PTT_TYPE == 'RIG_PTT_CM108':
self.hamlib_ptt_type = Hamlib.RIG_PTT_CM108
else:# static.HAMLIB_PTT_TYPE == 'RIG_PTT_NONE':
self.hamlib_ptt_type = Hamlib.RIG_PTT_NONE
self.my_rig.set_ptt(self.hamlib_ptt_type,0)
2021-01-16 13:28:47 +00:00
#--------------------------------------------------------------------------------------------------------
def transmit_signalling(self,ack_buffer):
#print(ack_buffer)
#static.ARQ_STATE = 'SENDING_ACK'
static.ARQ_STATE = 'SENDING_SIGNALLING'
2021-02-19 08:58:12 +00:00
static.PTT_STATE = True
self.my_rig.set_ptt(self.hamlib_ptt_type,1)
2021-01-21 07:33:45 +00:00
self.c_lib.freedv_open.restype = ctypes.POINTER(ctypes.c_ubyte)
freedv = self.c_lib.freedv_open(static.FREEDV_SIGNALLING_MODE)
bytes_per_frame = int(self.c_lib.freedv_get_bits_per_modem_frame(freedv)/8)
payload_per_frame = bytes_per_frame -2
n_nom_modem_samples = self.c_lib.freedv_get_n_nom_modem_samples(freedv)
n_tx_modem_samples = self.c_lib.freedv_get_n_tx_modem_samples(freedv) #get n_tx_modem_samples which defines the size of the modulation object
2021-01-21 07:33:45 +00:00
mod_out = ctypes.c_short * n_tx_modem_samples
mod_out = mod_out()
mod_out_preamble = ctypes.c_short * (n_tx_modem_samples) #*2 #1760 for mode 10,11,12 #4000 for mode 9
2021-01-30 16:25:24 +00:00
mod_out_preamble = mod_out_preamble()
2021-01-21 07:33:45 +00:00
buffer = bytearray(payload_per_frame) # use this if CRC16 checksum is required ( DATA1-3)
buffer[:len(ack_buffer)] = ack_buffer # set buffersize to length of data which will be send
crc = ctypes.c_ushort(self.c_lib.freedv_gen_crc16(bytes(buffer), payload_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)
2021-01-30 16:25:24 +00:00
2021-02-01 20:46:33 +00:00
preamble_bytes = self.c_lib.freedv_rawdatapreambletx(freedv, mod_out_preamble)
2021-01-21 07:33:45 +00:00
self.c_lib.freedv_rawdatatx(freedv,mod_out,data) # modulate DATA and safe it into mod_out pointer
2021-01-30 16:25:24 +00:00
txbuffer = bytearray()
txbuffer += bytes(mod_out_preamble)
txbuffer += bytes(mod_out)
2021-02-10 14:05:03 +00:00
# -------------- transmit audio twice
logging.debug("SEND SIGNALLING FRAME " + str(ack_buffer))
2021-01-30 16:25:24 +00:00
self.stream_tx.write(bytes(txbuffer))
self.my_rig.set_ptt(self.hamlib_ptt_type,0)
2021-02-19 08:58:12 +00:00
static.PTT_STATE = False
static.ARQ_STATE = 'RECEIVING_SIGNALLING'
#static.ARQ_STATE = 'RECEIVING_DATA'
2021-01-21 07:33:45 +00:00
#--------------------------------------------------------------------------------------------------------
# GET ARQ BURST FRAME VOM BUFFER AND MODULATE IT
def transmit_arq_burst(self):
self.my_rig.set_ptt(self.hamlib_ptt_type,1)
2021-02-19 08:58:12 +00:00
static.PTT_STATE = True
2021-01-21 20:00:21 +00:00
static.ARQ_STATE = 'SENDING_DATA'
self.c_lib.freedv_open.restype = ctypes.POINTER(ctypes.c_ubyte)
2021-01-20 21:51:14 +00:00
freedv = self.c_lib.freedv_open(static.FREEDV_DATA_MODE)
static.FREEDV_DATA_BYTES_PER_FRAME = int(self.c_lib.freedv_get_bits_per_modem_frame(freedv)/8)
static.FREEDV_DATA_PAYLOAD_PER_FRAME = static.FREEDV_DATA_BYTES_PER_FRAME -2
2021-02-01 20:46:33 +00:00
n_nom_modem_samples = self.c_lib.freedv_get_n_nom_modem_samples(freedv)
n_tx_modem_samples = self.c_lib.freedv_get_n_tx_modem_samples(freedv)#*2 #get n_tx_modem_samples which defines the size of the modulation object
mod_out = ctypes.c_short * n_tx_modem_samples
mod_out = mod_out()
mod_out_preamble = ctypes.c_short * (3520) #*2 #1760 for mode 10,11,12 #4000 for mode 9
2021-01-20 21:51:14 +00:00
mod_out_preamble = mod_out_preamble()
preamble = self.c_lib.freedv_rawdatapreambletx(freedv, mod_out_preamble);
2021-01-20 21:51:14 +00:00
txbuffer = bytearray()
txbuffer += bytes(mod_out_preamble)
if static.ARQ_RPT_RECEIVED == False:
for n in range(0,static.ARQ_TX_N_FRAMES_PER_BURST):
2021-01-20 21:51:14 +00:00
#---------------------------BUILD ARQ BURST ---------------------------------------------------------------------
frame_type = 10 + n + 1 #static.ARQ_TX_N_FRAMES_PER_BURST
frame_type = bytes([frame_type])
payload_data = bytes(static.TX_BUFFER[static.ARQ_N_SENT_FRAMES + n])
2021-02-05 13:40:32 +00:00
n_current_arq_frame = static.ARQ_N_SENT_FRAMES + n + 1
static.ARQ_TX_N_CURRENT_ARQ_FRAME = n_current_arq_frame.to_bytes(2, byteorder='big')
2021-02-05 13:40:32 +00:00
n_total_arq_frame = len(static.TX_BUFFER)
static.ARQ_TX_N_TOTAL_ARQ_FRAMES = n_total_arq_frame.to_bytes(2, byteorder='big')
arqframe = frame_type + \
bytes([static.ARQ_TX_N_FRAMES_PER_BURST]) + \
static.ARQ_TX_N_CURRENT_ARQ_FRAME + \
static.ARQ_TX_N_TOTAL_ARQ_FRAMES + \
static.DXCALLSIGN_CRC8 + \
static.MYCALLSIGN_CRC8 + \
payload_data
#print(arqframe)
buffer = bytearray(static.FREEDV_DATA_PAYLOAD_PER_FRAME) # create TX buffer
buffer[:len(arqframe)] = arqframe # set buffersize to length of data which will be send
crc = ctypes.c_ushort(self.c_lib.freedv_gen_crc16(bytes(buffer), static.FREEDV_DATA_PAYLOAD_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 * static.FREEDV_DATA_BYTES_PER_FRAME).from_buffer_copy(buffer)
self.c_lib.freedv_rawdatatx(freedv,mod_out,data) # modulate DATA and safe it into mod_out pointer
txbuffer += bytes(mod_out)
2021-02-19 08:58:12 +00:00
elif static.ARQ_RPT_RECEIVED == True:
2021-02-09 13:27:36 +00:00
for n in range(0,len(static.ARQ_RPT_FRAMES)):
missing_frame = int.from_bytes(static.ARQ_RPT_FRAMES[n], "big")
2021-02-09 13:27:36 +00:00
#---------------------------BUILD ARQ BURST ---------------------------------------------------------------------
frame_type = 10 + missing_frame #static.ARQ_TX_N_FRAMES_PER_BURST
frame_type = bytes([frame_type])
payload_data = bytes(static.TX_BUFFER[static.ARQ_N_SENT_FRAMES + missing_frame - 1])
2021-02-05 13:40:32 +00:00
n_current_arq_frame = static.ARQ_N_SENT_FRAMES + missing_frame
static.ARQ_TX_N_CURRENT_ARQ_FRAME = n_current_arq_frame.to_bytes(2, byteorder='big')
2021-02-05 13:40:32 +00:00
n_total_arq_frame = len(static.TX_BUFFER)
static.ARQ_TX_N_TOTAL_ARQ_FRAMES = n_total_arq_frame.to_bytes(2, byteorder='big')
2021-02-05 13:40:32 +00:00
arqframe = frame_type + \
2021-02-05 13:40:32 +00:00
bytes([static.ARQ_TX_N_FRAMES_PER_BURST]) + \
static.ARQ_TX_N_CURRENT_ARQ_FRAME + \
static.ARQ_TX_N_TOTAL_ARQ_FRAMES + \
static.DXCALLSIGN_CRC8 + \
static.MYCALLSIGN_CRC8 + \
2021-02-05 13:40:32 +00:00
payload_data
#print(arqframe)
buffer = bytearray(static.FREEDV_DATA_PAYLOAD_PER_FRAME) # create TX buffer
buffer[:len(arqframe)] = arqframe # set buffersize to length of data which will be send
2021-01-30 16:25:24 +00:00
crc = ctypes.c_ushort(self.c_lib.freedv_gen_crc16(bytes(buffer), static.FREEDV_DATA_PAYLOAD_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 * static.FREEDV_DATA_BYTES_PER_FRAME).from_buffer_copy(buffer)
self.c_lib.freedv_rawdatatx(freedv,mod_out,data) # modulate DATA and safe it into mod_out pointer
txbuffer += bytes(mod_out)
# -------------- transmit audio
2021-01-30 16:25:24 +00:00
self.stream_tx.write(bytes(txbuffer))
#static.ARQ_STATE = 'IDLE'
static.ARQ_STATE = 'RECEIVING_SIGNALLING'
2021-02-19 08:58:12 +00:00
static.PTT_STATE = False
self.my_rig.set_ptt(self.hamlib_ptt_type,0)
2021-01-21 07:33:45 +00:00
#--------------------------------------------------------------------------------------------------------
2021-01-20 21:51:14 +00:00
def receive(self,data_mode,signalling_mode):
force = True
2021-01-05 14:03:41 +00:00
self.c_lib.freedv_open.restype = ctypes.POINTER(ctypes.c_ubyte)
2021-01-20 21:51:14 +00:00
freedv_data = self.c_lib.freedv_open(data_mode)
freedv_signalling = self.c_lib.freedv_open(signalling_mode)
static.FREEDV_DATA_BYTES_PER_FRAME = int(self.c_lib.freedv_get_bits_per_modem_frame(freedv_data)/8)
static.FREEDV_DATA_PAYLOAD_PER_FRAME = static.FREEDV_DATA_BYTES_PER_FRAME -2
static.FREEDV_SIGNALLING_BYTES_PER_FRAME = int(self.c_lib.freedv_get_bits_per_modem_frame(freedv_signalling)/8)
static.FREEDV_SIGNALLING_PAYLOAD_PER_FRAME = static.FREEDV_SIGNALLING_BYTES_PER_FRAME -2
data_bytes_out = (ctypes.c_ubyte * static.FREEDV_DATA_BYTES_PER_FRAME)
data_bytes_out = data_bytes_out() #get pointer to bytes_out
2021-01-20 21:51:14 +00:00
signalling_bytes_out = (ctypes.c_ubyte * static.FREEDV_SIGNALLING_BYTES_PER_FRAME)
signalling_bytes_out = signalling_bytes_out() #get pointer to bytes_out
self.c_lib.freedv_set_frames_per_burst(freedv_data, 0);
self.c_lib.freedv_set_frames_per_burst(freedv_signalling, 1);
2021-02-05 13:40:32 +00:00
# with this we can interrupt receiving
while static.FREEDV_RECEIVE == True:
2021-01-20 21:51:14 +00:00
time.sleep(0.01)
# stuck in sync counter
stuck_in_sync_counter = 0
stuck_in_sync_10_counter = 0
#
2021-01-20 21:51:14 +00:00
while static.ARQ_STATE == 'RECEIVING_DATA':
time.sleep(0.01)
nin = self.c_lib.freedv_nin(freedv_data)
#nin = int(nin*(static.AUDIO_SAMPLE_RATE_RX/static.MODEM_SAMPLE_RATE))
2021-01-20 21:51:14 +00:00
data_in = self.stream_rx.read(nin, exception_on_overflow = False)
#print(audioop.rms(data_in, 2))
#self.c_lib.freedv_rawdatarx.argtype = [ctypes.POINTER(ctypes.c_ubyte), data_bytes_out, data_in] # check if really neccessary
2021-01-20 21:51:14 +00:00
nbytes = self.c_lib.freedv_rawdatarx(freedv_data, data_bytes_out, data_in) # demodulate audio
logging.debug(self.c_lib.freedv_get_rx_status(freedv_data))
2021-01-21 20:00:21 +00:00
#-------------STUCK IN SYNC DETECTOR
stuck_in_sync_counter += 1
if self.c_lib.freedv_get_rx_status(freedv_data) == 10:
stuck_in_sync_10_counter += 1
2021-02-16 13:36:01 +00:00
if stuck_in_sync_counter == 33 and self.c_lib.freedv_get_rx_status(freedv_data) == 10:
logging.critical("stuck in sync #1")
self.c_lib.freedv_set_sync(freedv_data, 0) #FORCE UNSYNC
stuck_in_sync_counter = 0
stuck_in_sync_10_counter = 0
if stuck_in_sync_counter >= 66 and stuck_in_sync_10_counter >= 2:
2021-02-16 13:36:01 +00:00
logging.critical("stuck in sync #2")
self.c_lib.freedv_set_sync(freedv_data, 0) #FORCE UNSYNC
stuck_in_sync_counter = 0
stuck_in_sync_10_counter = 0
#-----------------------------------
# get bit errors
Tbits = self.c_lib.freedv_get_total_bits(freedv_data)
Terrs = self.c_lib.freedv_get_total_bit_errors(freedv_data)
if Tbits != 0:
static.UNCODED_BER = Terrs/Tbits
2021-01-20 21:51:14 +00:00
if nbytes == static.FREEDV_DATA_BYTES_PER_FRAME:
rxstatus = self.c_lib.freedv_get_rx_status(freedv_data)
logging.debug("DATA-" + str(rxstatus))
# counter reset for stuck in sync counter
stuck_in_sync_counter = 0
stuck_in_sync_10_counter = 0
#
2021-02-05 13:40:32 +00:00
2021-01-20 21:51:14 +00:00
# CHECK IF FRAMETYPE IS BETWEEN 10 and 50 ------------------------
2021-02-01 20:46:33 +00:00
frametype = int.from_bytes(bytes(data_bytes_out[:1]), "big")
frame = frametype - 10
n_frames_per_burst = int.from_bytes(bytes(data_bytes_out[1:2]), "big")
#self.c_lib.freedv_set_frames_per_burst(freedv_data, n_frames_per_burst);
if 50 >= frametype >= 10:
if frame != 3 or force == True:
2021-02-24 13:22:28 +00:00
data_handler.data_received(bytes(data_bytes_out[:-2])) #send payload data to arq checker without CRC16
#print("static.ARQ_RX_BURST_BUFFER.count(None) " + str(static.ARQ_RX_BURST_BUFFER.count(None)))
if static.ARQ_RX_BURST_BUFFER.count(None) <= 1:
logging.debug("FULL BURST BUFFER ---> UNSYNC")
self.c_lib.freedv_set_sync(freedv_data, 0)
else:
logging.critical("---------------------------SIMULATED MISSING FRAME")
force = True
2021-01-20 21:51:14 +00:00
else:
logging.info("MODE: " + str(data_mode) + " DATA: " + str(bytes(data_bytes_out)))
2021-01-21 20:00:21 +00:00
# DO UNSYNC AFTER LAST BURST by checking the frame numbers agains the total frames per burst
2021-02-01 20:46:33 +00:00
if frame == n_frames_per_burst:
#reset bit error counters
self.c_lib.freedv_set_total_bit_errors(freedv_data,0)
self.c_lib.freedv_set_total_bits(freedv_data,0)
logging.debug("LAST FRAME ---> UNSYNC")
2021-02-01 20:46:33 +00:00
self.c_lib.freedv_set_sync(freedv_data, 0) #FORCE UNSYNC
2021-02-23 12:21:41 +00:00
#while static.ARQ_STATE == 'IDLE' or static.ARQ_STATE == 'RECEIVING_SIGNALLING':
while static.ARQ_STATE == 'RECEIVING_SIGNALLING':
2021-01-20 21:51:14 +00:00
time.sleep(0.01)
2021-01-21 20:00:21 +00:00
2021-01-20 21:51:14 +00:00
nin = self.c_lib.freedv_nin(freedv_signalling)
#nin = int(nin*(static.AUDIO_SAMPLE_RATE_RX/static.MODEM_SAMPLE_RATE))
2021-01-20 21:51:14 +00:00
data_in = self.stream_rx.read(nin, exception_on_overflow = False)
#self.c_lib.freedv_rawdatarx.argtype = [ctypes.POINTER(ctypes.c_ubyte), signalling_bytes_out, data_in] # check if really neccessary
2021-01-20 21:51:14 +00:00
nbytes = self.c_lib.freedv_rawdatarx(freedv_signalling, signalling_bytes_out, data_in) # demodulate audio
2021-02-01 20:46:33 +00:00
# CHECK IF FRAME CONTAINS ACK------------------------
if nbytes == static.FREEDV_SIGNALLING_BYTES_PER_FRAME:
#self.c_lib.freedv_set_sync(freedv_signalling, 0)
frametype = int.from_bytes(bytes(signalling_bytes_out[:1]), "big")
# BURST ACK
if frametype == 60:
logging.debug("ACK RECEIVED....")
2021-02-24 13:22:28 +00:00
data_handler.burst_ack_received()
# FRAME ACK
2021-02-10 14:05:03 +00:00
elif frametype == 61:
logging.debug("FRAME ACK RECEIVED....")
2021-02-24 13:22:28 +00:00
data_handler.frame_ack_received()
# FRAME RPT
2021-02-10 14:05:03 +00:00
elif frametype == 62:
logging.debug("REPEAT REQUEST RECEIVED....")
2021-02-24 13:22:28 +00:00
data_handler.burst_rpt_received(signalling_bytes_out[:-2])
# CQ FRAME
elif frametype == 1:
logging.info("CQ RECEIVED....")
# PING FRAME
elif frametype == 2:
logging.debug("PING RECEIVED....")
2021-02-24 13:22:28 +00:00
data_handler.received_ping(signalling_bytes_out[:-2])
# PING ACK
elif frametype == 3:
logging.debug("PING ACK RECEIVED....")
2021-02-24 13:22:28 +00:00
data_handler.received_ping_ack(signalling_bytes_out[:-2])
2021-02-10 14:05:03 +00:00
else:
logging.info("OTHER FRAME: " + str(signalling_bytes_out[:-2]))
print(frametype)
2021-02-10 14:05:03 +00:00
2021-02-04 16:51:01 +00:00
rxstatus = self.c_lib.freedv_get_rx_status(freedv_signalling)
logging.debug("ACK-" + str(rxstatus))
if rxstatus == 10:
#self.c_lib.freedv_set_sync(freedv_signalling, 0) #FORCE UNSYNC
print("SIGNALLING -SYNC 10- Trigger")
#if nbytes == static.FREEDV_SIGNALLING_BYTES_PER_FRAME or rxstatus == 10:
# self.c_lib.freedv_set_sync(freedv_signalling, 0) #FORCE UNSYNC
2021-01-20 21:51:14 +00:00