Reduce RX buffer sizes

This commit is contained in:
Nonoo 2020-11-21 18:46:37 +01:00
parent 75010175f9
commit 7102938893
2 changed files with 2 additions and 2 deletions

View file

@ -9,7 +9,7 @@ import (
)
const audioTimeoutDuration = 5 * time.Second
const audioRxSeqBufLength = 300 * time.Millisecond
const audioRxSeqBufLength = 100 * 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 = 300 * time.Millisecond
const serialRxSeqBufLength = 100 * time.Millisecond
type serialStream struct {
common streamCommon