Use buffer length recommended by the official app

This commit is contained in:
Nonoo 2020-10-28 16:39:21 +01:00
parent 0939fe2bb4
commit 7ec72ecd5e
2 changed files with 2 additions and 2 deletions

View file

@ -8,7 +8,7 @@ import (
)
const audioTimeoutDuration = 3 * time.Second
const audioRxSeqBufLength = 100 * time.Millisecond
const audioRxSeqBufLength = 120 * time.Millisecond
type audioStream struct {
common streamCommon

View file

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