mirror of
https://github.com/DJ2LS/FreeDATA
synced 2024-05-14 08:04:33 +00:00
Experimental fix as requested by DJ2LS (I think)
This commit is contained in:
parent
eb4ae3291c
commit
ef05b9e8cb
1 changed files with 1 additions and 1 deletions
|
@ -95,7 +95,7 @@ class ARQSessionISS(arq_session.ARQSession):
|
|||
retries = retries - 1
|
||||
|
||||
# TODO TEMPORARY TEST FOR SENDING IN LOWER SPEED LEVEL IF WE HAVE TWO FAILED TRANSMISSIONS!!!
|
||||
if retries == 8 and isARQBurst and self.speed_level > 0 and self.state not in [ISS_State.ABORTED, ISS_State.ABORTING]:
|
||||
if retries == self.RETRIES_DATA - 2 and isARQBurst and self.speed_level > 0 and self.state not in [ISS_State.ABORTED, ISS_State.ABORTING]:
|
||||
self.log("SENDING IN FALLBACK SPEED LEVEL", isWarning=True)
|
||||
self.speed_level = 0
|
||||
print(f" CONFIRMED BYTES: {self.confirmed_bytes}")
|
||||
|
|
Loading…
Reference in a new issue