mirror of
https://github.com/DJ2LS/FreeDATA
synced 2024-05-14 08:04:33 +00:00
increased timeouts for ack/nack/rpt
This commit is contained in:
parent
7de3d63dca
commit
542c527554
1 changed files with 6 additions and 6 deletions
|
@ -166,9 +166,9 @@ class DATA:
|
||||||
self.rx_frame_eof_received = False
|
self.rx_frame_eof_received = False
|
||||||
|
|
||||||
# TIMEOUTS
|
# TIMEOUTS
|
||||||
self.burst_ack_timeout_seconds = 3.0 # timeout for burst acknowledges
|
self.burst_ack_timeout_seconds = 4.5 # timeout for burst acknowledges
|
||||||
self.data_frame_ack_timeout_seconds = 3.0 # timeout for data frame acknowledges
|
self.data_frame_ack_timeout_seconds = 4.5 # timeout for data frame acknowledges
|
||||||
self.rpt_ack_timeout_seconds = 3.0 # timeout for rpt frame acknowledges
|
self.rpt_ack_timeout_seconds = 4.5 # timeout for rpt frame acknowledges
|
||||||
self.transmission_timeout = 180 # transmission timeout in seconds
|
self.transmission_timeout = 180 # transmission timeout in seconds
|
||||||
|
|
||||||
# Dictionary of functions and log messages used in process_data
|
# Dictionary of functions and log messages used in process_data
|
||||||
|
@ -436,7 +436,7 @@ class DATA:
|
||||||
|
|
||||||
def enqueue_frame_for_tx(
|
def enqueue_frame_for_tx(
|
||||||
self,
|
self,
|
||||||
frame_to_tx,# : list[bytearray], # this causes a crash on python 3.7
|
frame_to_tx, # : list[bytearray], # this causes a crash on python 3.7
|
||||||
c2_mode=FREEDV_MODE.sig0.value,
|
c2_mode=FREEDV_MODE.sig0.value,
|
||||||
copies=1,
|
copies=1,
|
||||||
repeat_delay=0,
|
repeat_delay=0,
|
||||||
|
|
Loading…
Reference in a new issue