mirror of
https://github.com/nonoo/kappanhang.git
synced 2026-03-16 10:04:38 +01:00
Reduce RX buffer sizes
This commit is contained in:
parent
75010175f9
commit
7102938893
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue