2021-02-24 13:22:28 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
|
|
Created on Sun Dec 27 20:43:40 2020
|
|
|
|
|
|
|
|
@author: DJ2LS
|
|
|
|
"""
|
2021-12-19 18:45:08 +00:00
|
|
|
import sys
|
2021-11-18 18:40:22 +00:00
|
|
|
import logging, structlog, log_handler
|
2021-02-24 13:22:28 +00:00
|
|
|
import threading
|
|
|
|
import time
|
|
|
|
from random import randrange
|
2021-02-28 16:28:07 +00:00
|
|
|
import asyncio
|
2021-12-30 11:41:41 +00:00
|
|
|
import zlib
|
2021-10-17 14:59:15 +00:00
|
|
|
import ujson as json
|
2021-02-24 13:22:28 +00:00
|
|
|
import static
|
|
|
|
import modem
|
|
|
|
import helpers
|
2021-03-12 13:14:36 +00:00
|
|
|
modem = modem.RF()
|
2021-02-24 13:22:28 +00:00
|
|
|
|
2021-09-26 15:51:11 +00:00
|
|
|
'''
|
|
|
|
Author: DJ2LS
|
|
|
|
Description:
|
|
|
|
data_handler is a module like file, which handles all the ARQ related parts.
|
2021-12-29 19:54:54 +00:00
|
|
|
Because of the fact, that we need to use it from both directions - circular import,
|
2021-09-26 15:51:11 +00:00
|
|
|
socket.py and modem.py ( TX and RX ), I was not able, to move it to a class system, yet.
|
2021-10-02 09:29:08 +00:00
|
|
|
Global variables are needed, because we need to save our ack state for example, which needs to
|
|
|
|
be accessable by several functions.
|
|
|
|
If we want to use global varialbes within a multithreaded environment,
|
2021-09-26 15:51:11 +00:00
|
|
|
we need to declare every needed variable in every function, so the threading module can
|
|
|
|
detect and use them.
|
|
|
|
|
2021-10-02 09:29:08 +00:00
|
|
|
From time to time I try to reduce the amount of application wide variables within static. module
|
|
|
|
and moving them to module wide globals
|
|
|
|
|
2021-09-26 15:51:11 +00:00
|
|
|
'''
|
|
|
|
|
2021-09-27 15:33:59 +00:00
|
|
|
# MODULE GLOBALS
|
2021-09-26 15:51:11 +00:00
|
|
|
|
|
|
|
DATA_CHANNEL_READY_FOR_DATA = False # Indicator if we are ready for sending or receiving data
|
|
|
|
DATA_CHANNEL_LAST_RECEIVED = 0.0 # time of last "live sign" of a frame
|
|
|
|
DATA_CHANNEL_MODE = 0 # mode for data channel
|
|
|
|
|
|
|
|
BURST_ACK_RECEIVED = False # if we received an acknowledge frame for a burst
|
|
|
|
DATA_FRAME_ACK_RECEIVED = False # if we received an acknowledge frame for a data frame
|
|
|
|
RPT_REQUEST_RECEIVED = False # if we received an request for repeater frames
|
|
|
|
RPT_REQUEST_BUFFER = [] # requested frames, saved in a list
|
|
|
|
|
|
|
|
RX_START_OF_TRANSMISSION = 0 # time of transmission start
|
|
|
|
|
2021-12-29 19:54:54 +00:00
|
|
|
DATA_FRAME_BOF = b'\xAA\xAA' # 2 bytes for the BOF End of File indicator in a data frame
|
|
|
|
DATA_FRAME_EOF = b'\xFF\xFF' # 2 bytes for the EOF End of File indicator in a data frame
|
2021-12-26 16:52:05 +00:00
|
|
|
|
2021-12-29 19:53:11 +00:00
|
|
|
|
2022-01-02 08:51:37 +00:00
|
|
|
def arq_data_received(data_in:bytes, bytes_per_frame:int):
|
2021-12-29 19:54:54 +00:00
|
|
|
data_in = bytes(data_in)
|
|
|
|
|
2021-09-26 15:51:11 +00:00
|
|
|
# we neeed to declare our global variables, so the thread has access to them
|
|
|
|
global RX_START_OF_TRANSMISSION
|
|
|
|
global DATA_CHANNEL_LAST_RECEIVED
|
2021-09-27 15:33:59 +00:00
|
|
|
global DATA_CHANNEL_READY_FOR_DATA
|
2021-12-29 19:54:54 +00:00
|
|
|
global DATA_FRAME_BOF
|
|
|
|
global DATA_FRAME_EOF
|
2021-10-02 09:46:29 +00:00
|
|
|
# only process data if we are in ARQ and BUSY state else return to quit
|
|
|
|
if static.ARQ_STATE != 'DATA' and static.TNC_STATE != 'BUSY':
|
|
|
|
return
|
|
|
|
|
2021-09-27 15:33:59 +00:00
|
|
|
# these vars will be overwritten during processing data
|
|
|
|
RX_FRAME_BOF_RECEIVED = False # here we save, if we received a "beginn of (data)frame"
|
|
|
|
RX_FRAME_EOF_RECEIVED = False # here we save, if we received a "end of (data)frame"
|
|
|
|
|
|
|
|
RX_PAYLOAD_PER_MODEM_FRAME = bytes_per_frame - 2 # payload per moden frame
|
2021-02-24 13:22:28 +00:00
|
|
|
|
2021-03-12 13:14:36 +00:00
|
|
|
static.TNC_STATE = 'BUSY'
|
2021-09-26 15:51:11 +00:00
|
|
|
static.ARQ_STATE = 'DATA'
|
2021-12-29 19:54:54 +00:00
|
|
|
static.INFO.append("ARQ;RECEIVING")
|
2021-09-26 15:51:11 +00:00
|
|
|
DATA_CHANNEL_LAST_RECEIVED = int(time.time())
|
2021-09-27 15:33:59 +00:00
|
|
|
|
2021-11-07 19:31:26 +00:00
|
|
|
# get some important data from the frame
|
2021-09-26 15:51:11 +00:00
|
|
|
RX_N_FRAME_OF_BURST = int.from_bytes(bytes(data_in[:1]), "big") - 10 # get number of burst frame
|
|
|
|
RX_N_FRAMES_PER_BURST = int.from_bytes(bytes(data_in[1:2]), "big") # get number of bursts from received frame
|
2021-12-29 19:42:27 +00:00
|
|
|
|
2021-12-29 19:54:54 +00:00
|
|
|
print(f"RX_N_FRAME_OF_BURST-{RX_N_FRAME_OF_BURST}")
|
|
|
|
print(f"RX_N_FRAMES_PER_BURST-{RX_N_FRAMES_PER_BURST}")
|
2021-03-12 13:14:36 +00:00
|
|
|
|
2021-12-29 19:54:54 +00:00
|
|
|
'''
|
|
|
|
The RX burst buffer needs to have a fixed length filled with "None". We need this later for counting the "Nones"
|
|
|
|
check if burst buffer has expected length else create it
|
|
|
|
'''
|
|
|
|
if len(static.RX_BURST_BUFFER) != RX_N_FRAMES_PER_BURST:
|
|
|
|
static.RX_BURST_BUFFER = [None] * RX_N_FRAMES_PER_BURST
|
|
|
|
|
|
|
|
# append data to rx burst buffer
|
|
|
|
static.RX_BURST_BUFFER[RX_N_FRAME_OF_BURST] = data_in[4:]
|
2021-12-29 19:53:11 +00:00
|
|
|
|
2021-12-29 19:54:54 +00:00
|
|
|
|
|
|
|
'''
|
|
|
|
check if we received all frames per burst by checking if burst buffer has no more "Nones"
|
|
|
|
this is the ideal case because we received all data
|
|
|
|
'''
|
|
|
|
if not None in static.RX_BURST_BUFFER:
|
|
|
|
# then iterate through burst buffer and append data to frame buffer
|
|
|
|
for i in range(0,len(static.RX_BURST_BUFFER)):
|
|
|
|
static.RX_FRAME_BUFFER += static.RX_BURST_BUFFER[i]
|
|
|
|
# then delete burst buffer
|
|
|
|
static.RX_BURST_BUFFER = []
|
2021-12-29 19:53:11 +00:00
|
|
|
|
2021-12-29 19:54:54 +00:00
|
|
|
# lets check if we didnt receive a BOF and EOF yet to avoid sending ack frames if we already received all data
|
|
|
|
if not RX_FRAME_BOF_RECEIVED and not RX_FRAME_EOF_RECEIVED and data_in.find(DATA_FRAME_EOF) < 0:
|
|
|
|
print(RX_FRAME_BOF_RECEIVED)
|
|
|
|
print(RX_FRAME_EOF_RECEIVED)
|
|
|
|
# create an ack frame
|
|
|
|
ack_frame = bytearray(14)
|
|
|
|
ack_frame[:1] = bytes([60])
|
|
|
|
ack_frame[1:2] = static.DXCALLSIGN_CRC8
|
|
|
|
ack_frame[2:3] = static.MYCALLSIGN_CRC8
|
|
|
|
|
|
|
|
# and transmit it
|
|
|
|
txbuffer = [ack_frame]
|
|
|
|
structlog.get_logger("structlog").info("[TNC] ARQ | RX | ACK")
|
|
|
|
modem.transmit(mode=14, repeats=1, repeat_delay=0, frames=txbuffer)
|
|
|
|
|
|
|
|
|
|
|
|
# check if we received last frame of burst and we have "Nones" in our rx buffer
|
|
|
|
# this is an indicator for missed frames.
|
|
|
|
# with this way of doing this, we always MUST receive the last frame of a burst otherwise the entire
|
|
|
|
# burst is lost
|
|
|
|
elif RX_N_FRAME_OF_BURST == RX_N_FRAMES_PER_BURST -1:
|
|
|
|
# check where a None is in our burst buffer and do frame+1, beacuse lists start at 0
|
|
|
|
missing_frames = [(frame+1) for frame, element in enumerate(static.RX_BURST_BUFFER) if element == None]
|
2021-12-26 15:16:25 +00:00
|
|
|
|
2021-12-29 19:54:54 +00:00
|
|
|
# then create a repeat frame
|
2021-09-26 15:51:11 +00:00
|
|
|
rpt_frame = bytearray(14)
|
|
|
|
rpt_frame[:1] = bytes([62])
|
|
|
|
rpt_frame[1:2] = static.DXCALLSIGN_CRC8
|
|
|
|
rpt_frame[2:3] = static.MYCALLSIGN_CRC8
|
|
|
|
rpt_frame[3:9] = missing_frames
|
2021-03-12 13:14:36 +00:00
|
|
|
|
2021-12-29 19:54:54 +00:00
|
|
|
# and transmit it
|
2021-12-22 11:48:49 +00:00
|
|
|
txbuffer = [rpt_frame]
|
2021-12-29 19:54:54 +00:00
|
|
|
structlog.get_logger("structlog").info("[TNC] ARQ | RX | Requesting", frames=missing_frames)
|
2021-12-26 09:06:07 +00:00
|
|
|
modem.transmit(mode=14, repeats=1, repeat_delay=0, frames=txbuffer)
|
2021-12-29 19:54:54 +00:00
|
|
|
|
|
|
|
# we should never reach this point
|
|
|
|
else:
|
|
|
|
structlog.get_logger("structlog").error("we shouldnt reach this point...")
|
|
|
|
|
|
|
|
# We have a BOF and EOF flag in our data. If we received both we received our frame.
|
|
|
|
# In case of loosing data but we received already a BOF and EOF we need to make sure, we
|
|
|
|
# received the complete last burst by checking it for Nones
|
|
|
|
bof_position = static.RX_FRAME_BUFFER.find(DATA_FRAME_BOF)
|
|
|
|
eof_position = static.RX_FRAME_BUFFER.find(DATA_FRAME_EOF)
|
|
|
|
if bof_position >= 0 and eof_position > 0 and not None in static.RX_BURST_BUFFER:
|
2021-12-30 11:41:41 +00:00
|
|
|
print(f"bof_position {bof_position} / eof_position {eof_position}")
|
2021-12-29 19:54:54 +00:00
|
|
|
RX_FRAME_BOF_RECEIVED = True
|
|
|
|
RX_FRAME_EOF_RECEIVED = True
|
|
|
|
|
|
|
|
#now extract raw data from buffer
|
|
|
|
payload = static.RX_FRAME_BUFFER[bof_position+len(DATA_FRAME_BOF):eof_position]
|
|
|
|
# get the data frame crc
|
2021-12-29 19:53:11 +00:00
|
|
|
|
2021-12-29 19:54:54 +00:00
|
|
|
data_frame_crc = payload[:2]
|
|
|
|
data_frame = payload[2:]
|
2021-12-29 19:53:11 +00:00
|
|
|
|
2021-12-29 19:54:54 +00:00
|
|
|
# check if data_frame_crc is equal with received crc
|
|
|
|
if data_frame_crc == helpers.get_crc_16(data_frame):
|
2021-12-29 19:53:11 +00:00
|
|
|
structlog.get_logger("structlog").info("[TNC] ARQ | RX | DATA FRAME SUCESSFULLY RECEIVED")
|
2021-12-29 19:54:54 +00:00
|
|
|
static.INFO.append("ARQ;RECEIVING;SUCCESS")
|
|
|
|
#calculate transfer rate here!
|
|
|
|
|
2021-12-30 11:41:41 +00:00
|
|
|
# decompression
|
|
|
|
data_frame_decompressed = zlib.decompress(data_frame)
|
|
|
|
static.ARQ_COMPRESSION_FACTOR = len(data_frame_decompressed) / len(data_frame)
|
|
|
|
data_frame = data_frame_decompressed
|
2021-10-17 14:59:15 +00:00
|
|
|
# decode to utf-8 string
|
2021-12-29 19:54:54 +00:00
|
|
|
data_frame = data_frame.decode("utf-8")
|
2021-10-17 14:59:15 +00:00
|
|
|
|
|
|
|
# decode json objects from data frame to inspect if we received a file or message
|
2021-12-29 19:54:54 +00:00
|
|
|
rawdata = json.loads(data_frame)
|
|
|
|
'''
|
|
|
|
if datatype is a file, we append to RX_BUFFER, which contains files only
|
|
|
|
dt = datatype
|
|
|
|
--> f = file
|
|
|
|
--> m = message
|
|
|
|
fn = filename
|
|
|
|
ft = filetype
|
|
|
|
d = data
|
|
|
|
crc = checksum
|
|
|
|
'''
|
2021-12-26 16:04:59 +00:00
|
|
|
if rawdata["dt"] == "f":
|
2021-12-26 09:06:07 +00:00
|
|
|
#logging.debug("RECEIVED FILE --> MOVING DATA TO RX BUFFER")
|
2021-12-29 19:54:54 +00:00
|
|
|
static.RX_BUFFER.append([static.DXCALLSIGN,static.DXGRID,int(time.time()), data_frame])
|
2021-10-24 12:44:55 +00:00
|
|
|
|
2021-10-17 14:59:15 +00:00
|
|
|
# if datatype is a file, we append to RX_MSG_BUFFER, which contains messages only
|
2021-12-26 16:04:59 +00:00
|
|
|
if rawdata["dt"] == "m":
|
2021-10-17 14:59:15 +00:00
|
|
|
static.RX_MSG_BUFFER.append([static.DXCALLSIGN,static.DXGRID,int(time.time()), complete_data_frame])
|
2021-12-26 09:06:07 +00:00
|
|
|
#logging.debug("RECEIVED MESSAGE --> MOVING DATA TO MESSAGE BUFFER")
|
2021-10-24 12:44:55 +00:00
|
|
|
|
2021-12-29 19:54:54 +00:00
|
|
|
|
|
|
|
# BUILDING ACK FRAME FOR DATA FRAME
|
2021-09-26 15:51:11 +00:00
|
|
|
ack_frame = bytearray(14)
|
|
|
|
ack_frame[:1] = bytes([61])
|
|
|
|
ack_frame[1:2] = static.DXCALLSIGN_CRC8
|
|
|
|
ack_frame[2:3] = static.MYCALLSIGN_CRC8
|
2021-03-12 13:14:36 +00:00
|
|
|
|
2021-12-29 19:54:54 +00:00
|
|
|
# TRANSMIT ACK FRAME FOR BURST
|
2021-12-26 09:06:07 +00:00
|
|
|
structlog.get_logger("structlog").info("[TNC] ARQ | RX | SENDING DATA FRAME ACK", snr=static.SNR, crc=data_frame_crc.hex())
|
2021-12-22 11:48:49 +00:00
|
|
|
txbuffer = [ack_frame]
|
2021-12-29 19:54:54 +00:00
|
|
|
modem.transmit(mode=14, repeats=1, repeat_delay=0, frames=txbuffer)
|
2021-12-29 19:53:11 +00:00
|
|
|
|
2021-12-29 19:54:54 +00:00
|
|
|
structlog.get_logger("structlog").info("[TNC] | RX | DATACHANNEL [" + str(static.MYCALLSIGN, 'utf-8') + "]<< >>[" + str(static.DXCALLSIGN, 'utf-8') + "]", snr=static.SNR)
|
2021-02-24 13:22:28 +00:00
|
|
|
|
2021-12-29 19:54:54 +00:00
|
|
|
else:
|
2021-12-29 19:53:11 +00:00
|
|
|
static.INFO.append("ARQ;RECEIVING;FAILED")
|
2021-12-29 19:54:54 +00:00
|
|
|
structlog.get_logger("structlog").warning("[TNC] ARQ | RX | DATA FRAME NOT SUCESSFULLY RECEIVED!", e="wrong crc")
|
|
|
|
|
|
|
|
|
|
|
|
# And finally we do a cleanup of our buffers and states
|
|
|
|
DATA_CHANNEL_READY_FOR_DATA = False
|
|
|
|
RX_FRAME_BOF_RECEIVED = False
|
|
|
|
RX_FRAME_EOF_RECEIVED = False
|
|
|
|
static.RX_BURST_BUFFER = []
|
|
|
|
static.RX_FRAME_BUFFER = b''
|
|
|
|
static.TNC_STATE = 'IDLE'
|
|
|
|
static.ARQ_STATE = 'IDLE'
|
|
|
|
|
2021-12-29 19:53:11 +00:00
|
|
|
|
|
|
|
|
2022-01-02 08:51:37 +00:00
|
|
|
def arq_transmit(data_out:bytes, mode:int, n_frames_per_burst:int):
|
2021-12-29 19:54:54 +00:00
|
|
|
|
2021-09-26 15:51:11 +00:00
|
|
|
global RPT_REQUEST_BUFFER
|
|
|
|
global DATA_FRAME_ACK_RECEIVED
|
|
|
|
global RPT_REQUEST_RECEIVED
|
|
|
|
global BURST_ACK_RECEIVED
|
2021-09-27 15:33:59 +00:00
|
|
|
#global TX_START_OF_TRANSMISSION
|
|
|
|
global DATA_CHANNEL_READY_FOR_DATA
|
2021-12-29 19:54:54 +00:00
|
|
|
global DATA_FRAME_BOF
|
|
|
|
global DATA_FRAME_EOF
|
2021-09-26 15:51:11 +00:00
|
|
|
|
2021-12-29 19:54:54 +00:00
|
|
|
|
2021-09-27 15:33:59 +00:00
|
|
|
DATA_CHANNEL_MODE = mode
|
|
|
|
|
2021-12-29 19:54:54 +00:00
|
|
|
TX_N_SENT_BYTES = 0 # already sent bytes per data frame
|
2021-09-27 15:33:59 +00:00
|
|
|
TX_N_RETRIES_PER_BURST = 0 # retries we already sent data
|
|
|
|
TX_N_MAX_RETRIES_PER_BURST = 5 # max amount of retries we sent before frame is lost
|
|
|
|
TX_N_FRAMES_PER_BURST = n_frames_per_burst # amount of n frames per burst
|
|
|
|
TX_BUFFER = [] # our buffer for appending new data
|
2021-09-26 15:51:11 +00:00
|
|
|
|
2021-11-07 19:31:26 +00:00
|
|
|
# TIMEOUTS
|
2022-01-02 09:35:30 +00:00
|
|
|
BURST_ACK_TIMEOUT_SECONDS = 3.0 # timeout for burst acknowledges
|
|
|
|
DATA_FRAME_ACK_TIMEOUT_SECONDS = 3.0 # timeout for data frame acknowledges
|
|
|
|
RPT_ACK_TIMEOUT_SECONDS = 3.0 # timeout for rpt frame acknowledges
|
2021-09-27 15:33:59 +00:00
|
|
|
|
2021-12-29 19:54:54 +00:00
|
|
|
static.INFO.append("ARQ;TRANSMITTING")
|
|
|
|
structlog.get_logger("structlog").info("[TNC] | TX | DATACHANNEL", mode=DATA_CHANNEL_MODE, bytes=len(data_out))
|
2022-01-02 08:45:34 +00:00
|
|
|
|
|
|
|
|
|
|
|
# make sure we have only bytes
|
|
|
|
#data_out = bytes(data_out)
|
|
|
|
|
2021-12-29 19:54:54 +00:00
|
|
|
# save len of data_out to TOTAL_BYTES for our statistics
|
|
|
|
static.TOTAL_BYTES = len(data_out)
|
2021-09-26 15:51:11 +00:00
|
|
|
|
2022-01-02 08:45:34 +00:00
|
|
|
# compression
|
|
|
|
data_frame_compressed = zlib.compress(data_out)
|
|
|
|
static.ARQ_COMPRESSION_FACTOR = len(data_out) / len(data_frame_compressed)
|
|
|
|
data_out = data_frame_compressed
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
tx_start_of_transmission = time.time()
|
|
|
|
# reset statistics
|
|
|
|
calculate_transfer_rate_tx(tx_start_of_transmission, 0, len(data_out))
|
|
|
|
|
2021-12-29 19:54:54 +00:00
|
|
|
# append a crc and beginn and end of file indicators
|
2021-03-12 13:14:36 +00:00
|
|
|
frame_payload_crc = helpers.get_crc_16(data_out)
|
2021-12-29 19:54:54 +00:00
|
|
|
data_out = DATA_FRAME_BOF + frame_payload_crc + data_out + DATA_FRAME_EOF
|
|
|
|
#initial bufferposition is 0
|
|
|
|
bufferposition = 0
|
|
|
|
# iterate through data out buffer
|
2022-01-02 09:35:30 +00:00
|
|
|
while bufferposition < len(data_out) and not DATA_FRAME_ACK_RECEIVED and DATA_CHANNEL_READY_FOR_DATA:
|
|
|
|
|
|
|
|
print(DATA_CHANNEL_READY_FOR_DATA)
|
|
|
|
print(DATA_FRAME_ACK_RECEIVED)
|
|
|
|
|
2021-12-29 19:54:54 +00:00
|
|
|
|
|
|
|
# we have TX_N_MAX_RETRIES_PER_BURST attempts for sending a burst
|
|
|
|
for TX_N_RETRIES_PER_BURST in range(0,TX_N_MAX_RETRIES_PER_BURST):
|
|
|
|
# payload information
|
|
|
|
payload_per_frame = modem.get_bytes_per_frame(mode) -2
|
|
|
|
# tempbuffer list for storing our data frames
|
|
|
|
tempbuffer = []
|
|
|
|
# append data frames with TX_N_FRAMES_PER_BURST to tempbuffer
|
|
|
|
for i in range(0, TX_N_FRAMES_PER_BURST):
|
|
|
|
arqheader = bytearray()
|
|
|
|
arqheader[:1] = bytes([10 + i])
|
|
|
|
arqheader[1:2] = bytes([TX_N_FRAMES_PER_BURST])
|
|
|
|
arqheader[3:4] = bytes(static.DXCALLSIGN_CRC8)
|
|
|
|
arqheader[4:5] = bytes(static.MYCALLSIGN_CRC8)
|
|
|
|
|
|
|
|
bufferposition_end = (bufferposition + payload_per_frame - len(arqheader))
|
|
|
|
|
|
|
|
# normal behavior
|
|
|
|
if bufferposition_end <= len(data_out):
|
|
|
|
|
|
|
|
frame = data_out[bufferposition:bufferposition_end]
|
|
|
|
frame = arqheader + frame
|
|
|
|
|
|
|
|
# this point shouldnt reached that often
|
|
|
|
elif bufferposition > len(data_out):
|
|
|
|
break
|
|
|
|
|
|
|
|
# the last bytes of a frame
|
|
|
|
else:
|
|
|
|
extended_data_out = data_out[bufferposition:]
|
|
|
|
extended_data_out += bytes([0]) * (payload_per_frame-len(extended_data_out)-len(arqheader))
|
|
|
|
frame = arqheader + extended_data_out
|
|
|
|
|
|
|
|
# update the bufferposition
|
|
|
|
# bufferposition = bufferposition_end
|
|
|
|
|
|
|
|
tempbuffer.append(frame)
|
|
|
|
|
|
|
|
structlog.get_logger("structlog").info("[TNC] ARQ | TX | FRAMES", mode=DATA_CHANNEL_MODE, fpb=TX_N_FRAMES_PER_BURST, retry=TX_N_RETRIES_PER_BURST)
|
|
|
|
modem.transmit(mode=DATA_CHANNEL_MODE, repeats=1, repeat_delay=0, frames=tempbuffer)
|
|
|
|
|
|
|
|
# lets wait for an ACK or RPT frame
|
|
|
|
burstacktimeout = time.time() + BURST_ACK_TIMEOUT_SECONDS
|
2022-01-02 09:35:30 +00:00
|
|
|
while not BURST_ACK_RECEIVED and not RPT_REQUEST_RECEIVED and not DATA_FRAME_ACK_RECEIVED and time.time() < burstacktimeout and DATA_CHANNEL_READY_FOR_DATA:
|
2021-12-29 19:54:54 +00:00
|
|
|
time.sleep(0.001)
|
2022-01-02 09:35:30 +00:00
|
|
|
|
2021-12-29 19:54:54 +00:00
|
|
|
# once we received a burst ack, reset its state and break the RETRIES loop
|
|
|
|
if BURST_ACK_RECEIVED:
|
|
|
|
BURST_ACK_RECEIVED = False # reset ack state
|
|
|
|
TX_N_RETRIES_PER_BURST = 0 # reset retries
|
|
|
|
break #break retry loop
|
2021-03-12 13:14:36 +00:00
|
|
|
|
2021-12-29 19:54:54 +00:00
|
|
|
if RPT_REQUEST_RECEIVED:
|
|
|
|
pass
|
2021-03-12 13:14:36 +00:00
|
|
|
|
2021-12-29 19:54:54 +00:00
|
|
|
if DATA_FRAME_ACK_RECEIVED:
|
|
|
|
break #break retry loop
|
|
|
|
|
2022-01-02 09:35:30 +00:00
|
|
|
|
|
|
|
# we need this part for leaving the repeat loop
|
|
|
|
if not DATA_CHANNEL_READY_FOR_DATA:
|
|
|
|
#print("not ready for data...leaving loop....")
|
|
|
|
break
|
|
|
|
|
|
|
|
|
2021-12-29 19:54:54 +00:00
|
|
|
# NEXT ATTEMPT
|
|
|
|
print(f"ATTEMPT {TX_N_RETRIES_PER_BURST}/{TX_N_MAX_RETRIES_PER_BURST}")
|
|
|
|
|
|
|
|
# update buffer position
|
|
|
|
bufferposition = bufferposition_end
|
|
|
|
# update stats
|
|
|
|
calculate_transfer_rate_tx(tx_start_of_transmission, bufferposition_end, len(data_out))
|
|
|
|
#GOING TO NEXT ITERATION
|
|
|
|
|
2021-03-12 13:14:36 +00:00
|
|
|
|
2021-12-29 19:54:54 +00:00
|
|
|
if DATA_FRAME_ACK_RECEIVED:
|
|
|
|
structlog.get_logger("structlog").info("ARQ | TX | DATA TRANSMITTED!", BytesPerMinute=static.ARQ_BYTES_PER_MINUTE, BitsPerSecond=static.ARQ_BITS_PER_SECOND)
|
|
|
|
else:
|
2022-01-02 09:35:30 +00:00
|
|
|
structlog.get_logger("structlog").info("ARQ | TX | TRANSMISSION FAILED OR TIME OUT!")
|
2021-03-12 13:14:36 +00:00
|
|
|
|
2021-12-29 19:54:54 +00:00
|
|
|
# and last but not least doing a state cleanup
|
|
|
|
static.TNC_STATE = 'IDLE'
|
|
|
|
static.ARQ_STATE = 'IDLE'
|
|
|
|
DATA_CHANNEL_READY_FOR_DATA = False
|
|
|
|
BURST_ACK_RECEIVED = False
|
|
|
|
RPT_REQUEST_RECEIVED = False
|
|
|
|
DATA_FRAME_ACK_RECEIVED = False
|
2022-01-02 09:35:30 +00:00
|
|
|
|
2021-03-12 13:14:36 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-09-27 15:33:59 +00:00
|
|
|
|
2021-09-26 15:51:11 +00:00
|
|
|
|
2021-03-12 13:14:36 +00:00
|
|
|
|
|
|
|
|
2021-03-19 14:28:55 +00:00
|
|
|
|
2021-03-19 11:06:12 +00:00
|
|
|
|
|
|
|
|
2021-03-12 13:14:36 +00:00
|
|
|
|
2021-03-19 11:06:12 +00:00
|
|
|
|
2021-03-12 13:14:36 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2021-03-18 10:39:12 +00:00
|
|
|
|
2021-03-12 13:14:36 +00:00
|
|
|
|
|
|
|
|
2021-03-17 10:22:06 +00:00
|
|
|
|
|
|
|
|
2021-02-24 13:22:28 +00:00
|
|
|
def burst_ack_received():
|
2021-09-26 15:51:11 +00:00
|
|
|
global BURST_ACK_RECEIVED
|
|
|
|
global DATA_CHANNEL_LAST_RECEIVED
|
|
|
|
|
2021-10-02 09:29:08 +00:00
|
|
|
# only process data if we are in ARQ and BUSY state
|
2021-12-29 19:54:54 +00:00
|
|
|
if static.ARQ_STATE == 'DATA':
|
2021-10-02 09:29:08 +00:00
|
|
|
BURST_ACK_RECEIVED = True # Force data loops of TNC to stop and continue with next frame
|
|
|
|
DATA_CHANNEL_LAST_RECEIVED = int(time.time()) # we need to update our timeout timestamp
|
2021-02-24 13:22:28 +00:00
|
|
|
|
|
|
|
|
|
|
|
def frame_ack_received():
|
2021-09-26 15:51:11 +00:00
|
|
|
global DATA_FRAME_ACK_RECEIVED
|
|
|
|
global DATA_CHANNEL_LAST_RECEIVED
|
2021-10-02 09:29:08 +00:00
|
|
|
|
|
|
|
# only process data if we are in ARQ and BUSY state
|
2021-12-29 19:54:54 +00:00
|
|
|
if static.ARQ_STATE == 'DATA':
|
2021-10-02 09:29:08 +00:00
|
|
|
DATA_FRAME_ACK_RECEIVED = True # Force data loops of TNC to stop and continue with next frame
|
|
|
|
DATA_CHANNEL_LAST_RECEIVED = int(time.time()) # we need to update our timeout timestamp
|
2021-03-12 13:14:36 +00:00
|
|
|
|
2021-02-24 13:22:28 +00:00
|
|
|
|
2022-01-02 08:51:37 +00:00
|
|
|
def burst_rpt_received(data_in:bytes):
|
2021-09-26 15:51:11 +00:00
|
|
|
global RPT_REQUEST_RECEIVED
|
|
|
|
global RPT_REQUEST_BUFFER
|
|
|
|
global DATA_CHANNEL_LAST_RECEIVED
|
2021-10-02 09:29:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
# only process data if we are in ARQ and BUSY state
|
|
|
|
if static.ARQ_STATE == 'DATA' and static.TNC_STATE == 'BUSY':
|
|
|
|
|
|
|
|
RPT_REQUEST_RECEIVED = True
|
|
|
|
DATA_CHANNEL_LAST_RECEIVED = int(time.time()) # we need to update our timeout timestamp
|
|
|
|
RPT_REQUEST_BUFFER = []
|
2021-03-12 13:14:36 +00:00
|
|
|
|
2021-10-02 09:29:08 +00:00
|
|
|
missing_area = bytes(data_in[3:12]) # 1:9
|
2021-03-12 13:14:36 +00:00
|
|
|
|
2021-10-02 09:29:08 +00:00
|
|
|
for i in range(0, 6, 2):
|
|
|
|
if not missing_area[i:i + 2].endswith(b'\x00\x00'):
|
|
|
|
missing = missing_area[i:i + 2]
|
|
|
|
RPT_REQUEST_BUFFER.insert(0, missing)
|
2021-03-12 13:14:36 +00:00
|
|
|
|
|
|
|
# ############################################################################################################
|
2021-02-28 14:24:14 +00:00
|
|
|
# ARQ DATA CHANNEL HANDLER
|
2021-03-12 13:14:36 +00:00
|
|
|
# ############################################################################################################
|
|
|
|
|
2021-02-28 14:24:14 +00:00
|
|
|
|
2022-01-02 08:51:37 +00:00
|
|
|
def open_dc_and_transmit(data_out:bytes, mode:int, n_frames_per_burst:int):
|
2021-09-26 15:51:11 +00:00
|
|
|
global DATA_CHANNEL_READY_FOR_DATA
|
2021-12-26 17:41:43 +00:00
|
|
|
|
|
|
|
static.TNC_STATE = 'BUSY'
|
2021-09-27 15:33:59 +00:00
|
|
|
|
|
|
|
asyncio.run(arq_open_data_channel(mode))
|
2021-03-18 13:37:42 +00:00
|
|
|
# wait until data channel is open
|
2021-09-26 15:51:11 +00:00
|
|
|
while not DATA_CHANNEL_READY_FOR_DATA:
|
2021-03-18 13:37:42 +00:00
|
|
|
time.sleep(0.01)
|
2021-12-26 15:16:25 +00:00
|
|
|
|
2021-09-27 15:33:59 +00:00
|
|
|
arq_transmit(data_out, mode, n_frames_per_burst)
|
2021-03-19 10:16:24 +00:00
|
|
|
|
2021-02-28 14:24:14 +00:00
|
|
|
|
2022-01-02 08:51:37 +00:00
|
|
|
async def arq_open_data_channel(mode:int):
|
2021-03-19 14:28:55 +00:00
|
|
|
|
2021-09-27 15:33:59 +00:00
|
|
|
global DATA_CHANNEL_READY_FOR_DATA
|
2021-09-26 15:51:11 +00:00
|
|
|
global DATA_CHANNEL_LAST_RECEIVED
|
2021-03-19 10:16:24 +00:00
|
|
|
|
2021-10-07 19:04:23 +00:00
|
|
|
DATA_CHANNEL_MAX_RETRIES = 5 # N attempts for connecting to another station
|
2021-09-27 15:33:59 +00:00
|
|
|
|
2021-09-26 15:51:11 +00:00
|
|
|
DATA_CHANNEL_MODE = int(mode)
|
|
|
|
DATA_CHANNEL_LAST_RECEIVED = int(time.time())
|
2021-03-12 13:14:36 +00:00
|
|
|
|
2021-09-26 15:51:11 +00:00
|
|
|
connection_frame = bytearray(14)
|
|
|
|
connection_frame[:1] = bytes([225])
|
|
|
|
connection_frame[1:2] = static.DXCALLSIGN_CRC8
|
|
|
|
connection_frame[2:3] = static.MYCALLSIGN_CRC8
|
|
|
|
connection_frame[3:9] = static.MYCALLSIGN
|
|
|
|
connection_frame[12:13] = bytes([DATA_CHANNEL_MODE])
|
2021-11-19 16:47:25 +00:00
|
|
|
|
2021-09-26 15:51:11 +00:00
|
|
|
while not DATA_CHANNEL_READY_FOR_DATA:
|
2021-09-27 15:33:59 +00:00
|
|
|
time.sleep(0.01)
|
|
|
|
for attempt in range(1,DATA_CHANNEL_MAX_RETRIES+1):
|
2021-10-07 19:04:23 +00:00
|
|
|
static.INFO.append("DATACHANNEL;OPENING")
|
|
|
|
|
2021-12-29 19:54:54 +00:00
|
|
|
structlog.get_logger("structlog").info("[TNC] ARQ | DATA | TX | [" + str(static.MYCALLSIGN, 'utf-8') + "]>> <<[" + str(static.DXCALLSIGN, 'utf-8') + "]", attempt=str(attempt) + "/" + str(DATA_CHANNEL_MAX_RETRIES))
|
2021-11-19 13:52:58 +00:00
|
|
|
|
2021-12-22 11:48:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
txbuffer = [connection_frame]
|
2021-12-26 09:06:07 +00:00
|
|
|
modem.transmit(mode=14, repeats=1, repeat_delay=0, frames=txbuffer)
|
2021-12-22 11:48:49 +00:00
|
|
|
|
2021-10-05 17:59:32 +00:00
|
|
|
timeout = time.time() + 3
|
2021-03-18 13:37:42 +00:00
|
|
|
while time.time() < timeout:
|
2021-09-27 15:33:59 +00:00
|
|
|
time.sleep(0.01)
|
2021-03-18 13:37:42 +00:00
|
|
|
# break if data channel is openend
|
2021-09-26 15:51:11 +00:00
|
|
|
if DATA_CHANNEL_READY_FOR_DATA:
|
2021-03-18 13:37:42 +00:00
|
|
|
break
|
2021-09-26 15:51:11 +00:00
|
|
|
if DATA_CHANNEL_READY_FOR_DATA:
|
2021-03-18 14:29:51 +00:00
|
|
|
break
|
2021-11-19 16:47:25 +00:00
|
|
|
|
2021-09-27 15:33:59 +00:00
|
|
|
if not DATA_CHANNEL_READY_FOR_DATA and attempt == DATA_CHANNEL_MAX_RETRIES:
|
2021-10-07 19:04:23 +00:00
|
|
|
static.INFO.append("DATACHANNEL;FAILED")
|
2021-11-19 13:52:58 +00:00
|
|
|
|
2021-12-29 19:54:54 +00:00
|
|
|
structlog.get_logger("structlog").warning("[TNC] ARQ | TX | DATA [" + str(static.MYCALLSIGN, 'utf-8') + "]>>X<<[" + str(static.DXCALLSIGN, 'utf-8') + "]")
|
2021-09-27 15:33:59 +00:00
|
|
|
static.TNC_STATE = 'IDLE'
|
|
|
|
static.ARQ_STATE = 'IDLE'
|
|
|
|
sys.exit() # close thread and so connection attempts
|
2021-03-12 13:14:36 +00:00
|
|
|
|
|
|
|
|
2022-01-02 08:51:37 +00:00
|
|
|
def arq_received_data_channel_opener(data_in:bytes):
|
2021-09-26 15:51:11 +00:00
|
|
|
|
2021-09-27 15:33:59 +00:00
|
|
|
#global DATA_CHANNEL_MODE
|
2021-09-26 15:51:11 +00:00
|
|
|
global DATA_CHANNEL_LAST_RECEIVED
|
|
|
|
|
2021-10-07 19:04:23 +00:00
|
|
|
static.INFO.append("DATACHANNEL;RECEIVEDOPENER")
|
2021-03-16 09:55:48 +00:00
|
|
|
static.DXCALLSIGN_CRC8 = bytes(data_in[2:3]).rstrip(b'\x00')
|
|
|
|
static.DXCALLSIGN = bytes(data_in[3:9]).rstrip(b'\x00')
|
2021-10-24 12:44:55 +00:00
|
|
|
helpers.add_to_heard_stations(static.DXCALLSIGN,static.DXGRID, 'DATA-CHANNEL', static.SNR, static.FREQ_OFFSET, static.HAMLIB_FREQUENCY)
|
2021-03-16 14:21:58 +00:00
|
|
|
|
2021-12-29 19:54:54 +00:00
|
|
|
structlog.get_logger("structlog").info("[TNC] ARQ | DATA | RX | [" + str(static.MYCALLSIGN, 'utf-8') + "]>> <<[" + str(static.DXCALLSIGN, 'utf-8') + "]")
|
2021-11-19 13:52:58 +00:00
|
|
|
|
2021-03-12 15:18:41 +00:00
|
|
|
|
2021-03-16 09:55:48 +00:00
|
|
|
static.ARQ_STATE = 'DATA'
|
2021-03-12 15:18:41 +00:00
|
|
|
static.TNC_STATE = 'BUSY'
|
2021-05-09 15:55:15 +00:00
|
|
|
|
2021-09-27 15:33:59 +00:00
|
|
|
mode = int.from_bytes(bytes(data_in[12:13]), "big")
|
2021-09-26 15:51:11 +00:00
|
|
|
DATA_CHANNEL_LAST_RECEIVED = int(time.time())
|
|
|
|
|
2021-02-28 14:24:14 +00:00
|
|
|
connection_frame = bytearray(14)
|
|
|
|
connection_frame[:1] = bytes([226])
|
|
|
|
connection_frame[1:2] = static.DXCALLSIGN_CRC8
|
|
|
|
connection_frame[2:3] = static.MYCALLSIGN_CRC8
|
2021-03-16 14:21:58 +00:00
|
|
|
connection_frame[3:9] = static.MYCALLSIGN
|
2021-09-27 15:33:59 +00:00
|
|
|
connection_frame[12:13] = bytes([mode])
|
2021-03-16 09:55:48 +00:00
|
|
|
|
2021-12-22 11:48:49 +00:00
|
|
|
txbuffer = [connection_frame]
|
2021-12-26 09:06:07 +00:00
|
|
|
modem.transmit(mode=14, repeats=1, repeat_delay=0, frames=txbuffer)
|
2021-12-25 16:05:38 +00:00
|
|
|
|
2021-12-29 19:54:54 +00:00
|
|
|
structlog.get_logger("structlog").info("[TNC] ARQ | DATA | RX | [" + str(static.MYCALLSIGN, 'utf-8') + "]>>|<<[" + str(static.DXCALLSIGN, 'utf-8') + "]", snr=static.SNR, mode=mode)
|
2021-11-19 13:52:58 +00:00
|
|
|
|
2022-01-02 08:51:37 +00:00
|
|
|
def arq_received_channel_is_open(data_in:bytes):
|
2021-03-16 14:21:58 +00:00
|
|
|
|
2021-09-26 15:51:11 +00:00
|
|
|
global DATA_CHANNEL_LAST_RECEIVED
|
|
|
|
global DATA_CHANNEL_READY_FOR_DATA
|
2021-09-27 15:33:59 +00:00
|
|
|
global DATA_CHANNEL_MODE
|
2021-09-26 15:51:11 +00:00
|
|
|
|
2021-10-07 19:04:23 +00:00
|
|
|
static.INFO.append("DATACHANNEL;OPEN")
|
2021-03-16 14:21:58 +00:00
|
|
|
static.DXCALLSIGN_CRC8 = bytes(data_in[2:3]).rstrip(b'\x00')
|
|
|
|
static.DXCALLSIGN = bytes(data_in[3:9]).rstrip(b'\x00')
|
2021-10-24 12:44:55 +00:00
|
|
|
helpers.add_to_heard_stations(static.DXCALLSIGN,static.DXGRID, 'DATA-CHANNEL', static.SNR, static.FREQ_OFFSET, static.HAMLIB_FREQUENCY)
|
2021-03-16 14:21:58 +00:00
|
|
|
|
2021-09-26 15:51:11 +00:00
|
|
|
DATA_CHANNEL_LAST_RECEIVED = int(time.time())
|
2021-03-12 13:14:36 +00:00
|
|
|
|
2021-10-02 09:29:08 +00:00
|
|
|
# we are doing a mode check here, but this doesn't seem to be necessary since we have simultaneous decoding
|
|
|
|
# we are forcing doing a transmission at the moment --> see else statement
|
2021-09-26 15:51:11 +00:00
|
|
|
if DATA_CHANNEL_MODE == int.from_bytes(bytes(data_in[12:13]), "big"):
|
2021-12-29 19:54:54 +00:00
|
|
|
structlog.get_logger("structlog").info("[TNC] ARQ | DATA | TX | [" + str(static.MYCALLSIGN, 'utf-8') + "]>>|<<[" + str(static.DXCALLSIGN, 'utf-8') + "]", snr=static.SNR)
|
2021-12-26 15:16:25 +00:00
|
|
|
|
2021-10-02 09:29:08 +00:00
|
|
|
# as soon as we set ARQ_STATE to DATA, transmission starts
|
2021-03-16 09:55:48 +00:00
|
|
|
static.ARQ_STATE = 'DATA'
|
2021-09-26 15:51:11 +00:00
|
|
|
DATA_CHANNEL_READY_FOR_DATA = True
|
|
|
|
DATA_CHANNEL_LAST_RECEIVED = int(time.time())
|
2021-03-16 09:55:48 +00:00
|
|
|
else:
|
2021-12-29 19:54:54 +00:00
|
|
|
structlog.get_logger("structlog").info("[TNC] ARQ | DATA | TX | [" + str(static.MYCALLSIGN, 'utf-8') + "]>>|<<[" + str(static.DXCALLSIGN, 'utf-8') + "]", snr=static.SNR, info="wrong mode rcvd")
|
2021-10-02 09:29:08 +00:00
|
|
|
# as soon as we set ARQ_STATE to DATA, transmission starts
|
2021-09-27 15:33:59 +00:00
|
|
|
static.ARQ_STATE = 'DATA'
|
|
|
|
DATA_CHANNEL_READY_FOR_DATA = True
|
|
|
|
DATA_CHANNEL_LAST_RECEIVED = int(time.time())
|
2021-02-28 14:24:14 +00:00
|
|
|
|
2021-03-12 13:14:36 +00:00
|
|
|
# ############################################################################################################
|
2021-02-24 15:47:52 +00:00
|
|
|
# PING HANDLER
|
2021-03-12 13:14:36 +00:00
|
|
|
# ############################################################################################################
|
|
|
|
|
2022-01-02 08:51:37 +00:00
|
|
|
def transmit_ping(callsign:str):
|
2021-03-11 19:04:31 +00:00
|
|
|
static.DXCALLSIGN = bytes(callsign, 'utf-8').rstrip(b'\x00')
|
2021-03-09 10:05:59 +00:00
|
|
|
static.DXCALLSIGN_CRC8 = helpers.get_crc_8(static.DXCALLSIGN)
|
2021-10-07 19:04:23 +00:00
|
|
|
|
|
|
|
static.INFO.append("PING;SENDING")
|
2021-11-19 13:52:58 +00:00
|
|
|
structlog.get_logger("structlog").info("[TNC] PING REQ [" + str(static.MYCALLSIGN, 'utf-8') + "] >>> [" + str(static.DXCALLSIGN, 'utf-8') + "]" )
|
2021-03-12 13:14:36 +00:00
|
|
|
|
2021-09-26 15:51:11 +00:00
|
|
|
ping_frame = bytearray(14)
|
|
|
|
ping_frame[:1] = bytes([210])
|
2021-03-07 15:41:02 +00:00
|
|
|
ping_frame[1:2] = static.DXCALLSIGN_CRC8
|
|
|
|
ping_frame[2:3] = static.MYCALLSIGN_CRC8
|
|
|
|
ping_frame[3:9] = static.MYCALLSIGN
|
2021-02-24 13:22:28 +00:00
|
|
|
|
2021-12-22 11:48:49 +00:00
|
|
|
txbuffer = [ping_frame]
|
2021-12-26 09:06:07 +00:00
|
|
|
modem.transmit(mode=14, repeats=1, repeat_delay=0, frames=txbuffer)
|
2021-03-12 13:14:36 +00:00
|
|
|
|
2022-01-02 08:51:37 +00:00
|
|
|
def received_ping(data_in:bytes, frequency_offset:str):
|
2021-02-28 14:24:14 +00:00
|
|
|
|
2021-03-11 19:04:31 +00:00
|
|
|
static.DXCALLSIGN_CRC8 = bytes(data_in[2:3]).rstrip(b'\x00')
|
|
|
|
static.DXCALLSIGN = bytes(data_in[3:9]).rstrip(b'\x00')
|
2021-10-24 12:44:55 +00:00
|
|
|
helpers.add_to_heard_stations(static.DXCALLSIGN,static.DXGRID, 'PING', static.SNR, static.FREQ_OFFSET, static.HAMLIB_FREQUENCY)
|
2021-10-07 19:04:23 +00:00
|
|
|
|
|
|
|
static.INFO.append("PING;RECEIVING")
|
2021-11-19 13:52:58 +00:00
|
|
|
|
|
|
|
structlog.get_logger("structlog").info("[TNC] PING REQ [" + str(static.MYCALLSIGN, 'utf-8') + "] <<< [" + str(static.DXCALLSIGN, 'utf-8') + "]", snr=static.SNR )
|
2021-03-07 15:41:02 +00:00
|
|
|
|
2021-09-26 15:51:11 +00:00
|
|
|
ping_frame = bytearray(14)
|
|
|
|
ping_frame[:1] = bytes([211])
|
2021-03-07 15:41:02 +00:00
|
|
|
ping_frame[1:2] = static.DXCALLSIGN_CRC8
|
|
|
|
ping_frame[2:3] = static.MYCALLSIGN_CRC8
|
2021-05-13 19:02:14 +00:00
|
|
|
ping_frame[3:9] = static.MYGRID
|
2021-10-13 17:39:46 +00:00
|
|
|
ping_frame[9:11] = frequency_offset.to_bytes(2, byteorder='big', signed=True)
|
2021-10-17 14:59:15 +00:00
|
|
|
|
2021-12-22 11:48:49 +00:00
|
|
|
txbuffer = [ping_frame]
|
2021-12-26 09:06:07 +00:00
|
|
|
modem.transmit(mode=14, repeats=1, repeat_delay=0, frames=txbuffer)
|
2021-03-12 13:14:36 +00:00
|
|
|
|
2022-01-02 08:51:37 +00:00
|
|
|
def received_ping_ack(data_in:bytes):
|
2021-03-07 15:41:02 +00:00
|
|
|
|
2021-03-11 19:04:31 +00:00
|
|
|
static.DXCALLSIGN_CRC8 = bytes(data_in[2:3]).rstrip(b'\x00')
|
2021-05-13 19:02:14 +00:00
|
|
|
static.DXGRID = bytes(data_in[3:9]).rstrip(b'\x00')
|
2021-09-26 15:51:11 +00:00
|
|
|
|
2021-10-24 12:44:55 +00:00
|
|
|
helpers.add_to_heard_stations(static.DXCALLSIGN,static.DXGRID, 'PING-ACK', static.SNR, static.FREQ_OFFSET, static.HAMLIB_FREQUENCY)
|
2021-05-13 19:02:14 +00:00
|
|
|
|
2021-10-07 19:04:23 +00:00
|
|
|
static.INFO.append("PING;RECEIVEDACK")
|
2021-11-19 13:52:58 +00:00
|
|
|
|
|
|
|
structlog.get_logger("structlog").info("[TNC] PING ACK [" + str(static.MYCALLSIGN, 'utf-8') + "] >|< [" + str(static.DXCALLSIGN, 'utf-8') + "]", snr=static.SNR )
|
2021-02-24 15:47:52 +00:00
|
|
|
static.TNC_STATE = 'IDLE'
|
|
|
|
|
2021-03-12 13:14:36 +00:00
|
|
|
# ############################################################################################################
|
2021-02-24 15:47:52 +00:00
|
|
|
# BROADCAST HANDLER
|
2021-03-12 13:14:36 +00:00
|
|
|
# ############################################################################################################
|
|
|
|
|
2022-01-02 08:51:37 +00:00
|
|
|
def run_beacon(interval:int):
|
2021-12-06 19:16:14 +00:00
|
|
|
try:
|
|
|
|
structlog.get_logger("structlog").warning("[TNC] Starting beacon!", interval=interval)
|
|
|
|
|
|
|
|
while static.BEACON_STATE and static.ARQ_STATE == 'IDLE':
|
|
|
|
|
|
|
|
beacon_frame = bytearray(14)
|
|
|
|
beacon_frame[:1] = bytes([230])
|
|
|
|
beacon_frame[1:2] = b'\x01'
|
|
|
|
beacon_frame[2:8] = static.MYCALLSIGN
|
|
|
|
beacon_frame[8:14] = static.MYGRID
|
|
|
|
|
|
|
|
static.INFO.append("BEACON;SENDING")
|
|
|
|
structlog.get_logger("structlog").info("[TNC] Sending beacon!", interval=interval)
|
2021-12-22 11:48:49 +00:00
|
|
|
|
|
|
|
txbuffer = [beacon_frame]
|
2021-12-26 09:06:07 +00:00
|
|
|
modem.transmit(mode=14, repeats=1, repeat_delay=0, frames=txbuffer)
|
2021-12-06 19:16:14 +00:00
|
|
|
time.sleep(interval)
|
|
|
|
|
|
|
|
|
|
|
|
except Exception as e:
|
|
|
|
print(e)
|
|
|
|
|
2022-01-02 08:51:37 +00:00
|
|
|
def received_beacon(data_in:bytes):
|
2021-12-06 19:16:14 +00:00
|
|
|
# here we add the received station to the heard stations buffer
|
|
|
|
dxcallsign = bytes(data_in[2:8]).rstrip(b'\x00')
|
|
|
|
dxgrid = bytes(data_in[8:14]).rstrip(b'\x00')
|
|
|
|
static.INFO.append("BEACON;RECEIVING")
|
|
|
|
structlog.get_logger("structlog").info("[TNC] BEACON RCVD [" + str(dxcallsign, 'utf-8') + "]["+ str(dxgrid, 'utf-8') +"] ", snr=static.SNR)
|
|
|
|
helpers.add_to_heard_stations(dxcallsign,dxgrid, 'BEACON', static.SNR, static.FREQ_OFFSET, static.HAMLIB_FREQUENCY)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-07-19 19:00:46 +00:00
|
|
|
def transmit_cq():
|
2021-02-24 13:22:28 +00:00
|
|
|
logging.info("CQ CQ CQ")
|
2021-10-07 19:04:23 +00:00
|
|
|
static.INFO.append("CQ;SENDING")
|
|
|
|
|
2021-09-26 15:51:11 +00:00
|
|
|
cq_frame = bytearray(14)
|
|
|
|
cq_frame[:1] = bytes([200])
|
|
|
|
cq_frame[1:2] = b'\x01'
|
2021-05-13 16:50:56 +00:00
|
|
|
#cq_frame[2:3] = static.MYCALLSIGN_CRC8
|
|
|
|
#cq_frame[3:9] = static.MYCALLSIGN
|
2021-09-26 15:51:11 +00:00
|
|
|
cq_frame[2:8] = static.MYCALLSIGN
|
2021-05-13 16:50:56 +00:00
|
|
|
cq_frame[8:14] = static.MYGRID
|
2021-05-09 15:55:15 +00:00
|
|
|
|
2021-12-22 11:48:49 +00:00
|
|
|
txbuffer = [cq_frame]
|
2021-12-26 09:06:07 +00:00
|
|
|
modem.transmit(mode=14, repeats=1, repeat_delay=1000, frames=txbuffer)
|
|
|
|
#while not modem.transmit(14, 1, txbuffer):
|
2021-12-22 11:48:49 +00:00
|
|
|
# pass
|
2021-09-26 15:51:11 +00:00
|
|
|
|
2021-03-12 13:14:36 +00:00
|
|
|
|
2022-01-02 08:51:37 +00:00
|
|
|
def received_cq(data_in:bytes):
|
2021-03-12 13:14:36 +00:00
|
|
|
# here we add the received station to the heard stations buffer
|
2021-05-13 16:50:56 +00:00
|
|
|
dxcallsign = bytes(data_in[2:8]).rstrip(b'\x00')
|
|
|
|
dxgrid = bytes(data_in[8:14]).rstrip(b'\x00')
|
2021-10-07 19:04:23 +00:00
|
|
|
static.INFO.append("CQ;RECEIVING")
|
2021-11-19 13:52:58 +00:00
|
|
|
structlog.get_logger("structlog").info("[TNC] CQ RCVD [" + str(dxcallsign, 'utf-8') + "]["+ str(dxgrid, 'utf-8') +"] ", snr=static.SNR)
|
2021-10-24 12:44:55 +00:00
|
|
|
helpers.add_to_heard_stations(dxcallsign,dxgrid, 'CQ CQ CQ', static.SNR, static.FREQ_OFFSET, static.HAMLIB_FREQUENCY)
|
2021-03-16 14:21:58 +00:00
|
|
|
|
|
|
|
|
2021-12-06 19:16:14 +00:00
|
|
|
|
|
|
|
|
2022-01-02 08:51:37 +00:00
|
|
|
def arq_reset_ack(state:bool):
|
2021-09-26 15:51:11 +00:00
|
|
|
"""
|
|
|
|
Author: DJ2LS
|
|
|
|
"""
|
|
|
|
global BURST_ACK_RECEIVED
|
|
|
|
global RPT_REQUEST_RECEIVED
|
|
|
|
global DATA_FRAME_ACK_RECEIVED
|
|
|
|
|
|
|
|
BURST_ACK_RECEIVED = state
|
|
|
|
RPT_REQUEST_RECEIVED = state
|
|
|
|
DATA_FRAME_ACK_RECEIVED = state
|
2021-03-12 13:14:36 +00:00
|
|
|
|
2021-02-24 16:29:08 +00:00
|
|
|
|
2022-01-02 08:51:37 +00:00
|
|
|
def calculate_transfer_rate_rx(tx_start_of_transmission:float, receivedbytes:int, rx_data_length:int) -> list:
|
2021-09-27 15:33:59 +00:00
|
|
|
try:
|
2021-12-29 19:54:54 +00:00
|
|
|
static.ARQ_TRANSMISSION_PERCENT = int((receivedbytes / rx_data_length) * 100)
|
2021-09-27 15:33:59 +00:00
|
|
|
|
|
|
|
transmissiontime = time.time() - rx_start_of_transmission
|
2021-12-29 19:54:54 +00:00
|
|
|
if receivedbytes > 0:
|
|
|
|
static.ARQ_BITS_PER_SECOND = int((receivedbytes*8) / transmissiontime)
|
|
|
|
static.ARQ_BYTES_PER_MINUTE = int((receivedbytes) / (transmissiontime/60))
|
|
|
|
else:
|
|
|
|
static.ARQ_BITS_PER_SECOND = 0
|
|
|
|
static.ARQ_BYTES_PER_MINUTE = 0
|
2021-09-27 15:33:59 +00:00
|
|
|
except:
|
|
|
|
static.ARQ_TRANSMISSION_PERCENT = 0.0
|
|
|
|
static.ARQ_BITS_PER_SECOND = 0
|
|
|
|
static.ARQ_BYTES_PER_MINUTE = 0
|
2021-09-26 15:51:11 +00:00
|
|
|
|
2021-09-27 15:33:59 +00:00
|
|
|
return [static.ARQ_BITS_PER_SECOND, \
|
|
|
|
static.ARQ_BYTES_PER_MINUTE, \
|
|
|
|
static.ARQ_TRANSMISSION_PERCENT]
|
2021-09-26 15:51:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2022-01-02 08:51:37 +00:00
|
|
|
def calculate_transfer_rate_tx(tx_start_of_transmission:float, sentbytes:int, tx_buffer_length:int) -> list:
|
2021-12-29 19:54:54 +00:00
|
|
|
|
2021-09-27 15:33:59 +00:00
|
|
|
try:
|
2021-12-29 19:54:54 +00:00
|
|
|
static.ARQ_TRANSMISSION_PERCENT = int((sentbytes / tx_buffer_length) * 100)
|
2021-09-26 15:51:11 +00:00
|
|
|
|
2021-09-27 15:33:59 +00:00
|
|
|
transmissiontime = time.time() - tx_start_of_transmission
|
2021-12-29 19:54:54 +00:00
|
|
|
|
|
|
|
if sentbytes > 0:
|
2021-09-26 15:51:11 +00:00
|
|
|
|
2021-12-29 19:54:54 +00:00
|
|
|
static.ARQ_BITS_PER_SECOND = int((sentbytes*8) / transmissiontime)
|
|
|
|
static.ARQ_BYTES_PER_MINUTE = int((sentbytes) / (transmissiontime/60))
|
2021-09-26 15:51:11 +00:00
|
|
|
|
|
|
|
else:
|
|
|
|
static.ARQ_BITS_PER_SECOND = 0
|
2021-09-27 15:33:59 +00:00
|
|
|
static.ARQ_BYTES_PER_MINUTE = 0
|
|
|
|
|
|
|
|
except:
|
2021-09-26 15:51:11 +00:00
|
|
|
static.ARQ_TRANSMISSION_PERCENT = 0.0
|
|
|
|
static.ARQ_BITS_PER_SECOND = 0
|
|
|
|
static.ARQ_BYTES_PER_MINUTE = 0
|
2021-10-05 17:59:32 +00:00
|
|
|
|
2021-09-27 15:33:59 +00:00
|
|
|
return [static.ARQ_BITS_PER_SECOND, \
|
|
|
|
static.ARQ_BYTES_PER_MINUTE, \
|
|
|
|
static.ARQ_TRANSMISSION_PERCENT]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-09-26 15:51:11 +00:00
|
|
|
# WATCHDOG FUNCTIONS
|
|
|
|
def watchdog():
|
|
|
|
"""
|
|
|
|
Author: DJ2LS
|
|
|
|
|
|
|
|
watchdog master function. Frome here we call the watchdogs
|
|
|
|
"""
|
|
|
|
while True:
|
2021-12-26 15:16:25 +00:00
|
|
|
time.sleep(0.5)
|
2021-09-26 15:51:11 +00:00
|
|
|
data_channel_keep_alive_watchdog()
|
|
|
|
|
|
|
|
|
|
|
|
def data_channel_keep_alive_watchdog():
|
|
|
|
"""
|
|
|
|
Author: DJ2LS
|
|
|
|
|
|
|
|
"""
|
|
|
|
global DATA_CHANNEL_LAST_RECEIVED
|
2022-01-02 09:35:30 +00:00
|
|
|
global DATA_CHANNEL_READY_FOR_DATA
|
|
|
|
global BURST_ACK_RECEIVED
|
|
|
|
global RPT_REQUEST_RECEIVED
|
|
|
|
global DATA_FRAME_ACK_RECEIVED
|
|
|
|
|
2021-09-26 15:51:11 +00:00
|
|
|
# and not static.ARQ_SEND_KEEP_ALIVE:
|
|
|
|
if static.ARQ_STATE == 'DATA' and static.TNC_STATE == 'BUSY':
|
|
|
|
time.sleep(0.01)
|
|
|
|
if DATA_CHANNEL_LAST_RECEIVED + 30 > time.time():
|
|
|
|
time.sleep(0.01)
|
|
|
|
#pass
|
|
|
|
else:
|
|
|
|
DATA_CHANNEL_LAST_RECEIVED = 0
|
2021-12-29 19:54:54 +00:00
|
|
|
logging.info("DATA [" + str(static.MYCALLSIGN, 'utf-8') + "]<<T>>[" + str(static.DXCALLSIGN, 'utf-8') + "]")
|
2021-09-27 15:33:59 +00:00
|
|
|
#arq_reset_frame_machine()
|
2022-01-02 09:35:30 +00:00
|
|
|
|
2021-09-27 15:33:59 +00:00
|
|
|
static.TNC_STATE = 'IDLE'
|
|
|
|
static.ARQ_STATE = 'IDLE'
|
2022-01-02 09:35:30 +00:00
|
|
|
DATA_CHANNEL_READY_FOR_DATA = False
|
|
|
|
BURST_ACK_RECEIVED = False
|
|
|
|
RPT_REQUEST_RECEIVED = False
|
|
|
|
DATA_FRAME_ACK_RECEIVED = False
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-09-26 15:51:11 +00:00
|
|
|
|
|
|
|
# START THE THREAD FOR THE TIMEOUT WATCHDOG
|
|
|
|
WATCHDOG_SERVER_THREAD = threading.Thread(target=watchdog, name="watchdog")
|
|
|
|
WATCHDOG_SERVER_THREAD.start()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-09-27 15:33:59 +00:00
|
|
|
|