From c5a6742260698b58624929d05d32e9375c4db367 Mon Sep 17 00:00:00 2001 From: Nonoo Date: Sat, 21 Nov 2020 11:02:52 +0100 Subject: [PATCH] Increase serial stream seqbuf length --- serialstream.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/serialstream.go b/serialstream.go index f6d09ce..2d60033 100644 --- a/serialstream.go +++ b/serialstream.go @@ -7,7 +7,7 @@ import ( ) const maxSerialFrameLength = 80 // Max. frame length according to Hamlib. -const serialRxSeqBufLength = 200 * time.Millisecond +const serialRxSeqBufLength = 300 * time.Millisecond type serialStream struct { common streamCommon