Increase serial RX seqbuf length to make the serial stream more capable of retransmissions

This commit is contained in:
Nonoo 2020-11-06 09:40:43 +01:00
parent e4156fbb89
commit 286d213896

View file

@ -7,7 +7,7 @@ import (
)
const maxSerialFrameLength = 80 // Max. frame length according to Hamlib.
const serialRxSeqBufLength = 100 * time.Millisecond
const serialRxSeqBufLength = 300 * time.Millisecond
type serialStream struct {
common streamCommon