diff --git a/tnc/modem.py b/tnc/modem.py index be5bab8b..8f1f5030 100644 --- a/tnc/modem.py +++ b/tnc/modem.py @@ -913,9 +913,9 @@ class RF: # so we have a smoother state toggle if np.sum(dfft[dfft > avg + 10]) >= 300 and not static.TRANSMITTING: static.CHANNEL_BUSY = True - # Limit delay counter to a maximun of 50. The higher this value, + # Limit delay counter to a maximum of 50. The higher this value, # the longer we will wait until releasing state - channel_busy_delay = min(channel_busy_delay + 5, 50) + channel_busy_delay = min(channel_busy_delay + 5, 150) else: # Decrement channel busy counter if no signal has been detected. channel_busy_delay = max(channel_busy_delay - 1, 0)