From 8869950ef74242414737788d931728a0b5fbc9bc Mon Sep 17 00:00:00 2001 From: Andy CA6JAU Date: Tue, 4 Jul 2017 00:17:44 -0400 Subject: [PATCH] Increasing TX and RX IO bit ring buffer --- Globals.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Globals.h b/Globals.h index 2bd31ee..4c26f07 100644 --- a/Globals.h +++ b/Globals.h @@ -47,8 +47,8 @@ enum MMDVM_STATE { #include "P25TX.h" #include "Debug.h" -const uint16_t TX_RINGBUFFER_SIZE = 100U; -const uint16_t RX_RINGBUFFER_SIZE = 120U; +const uint16_t TX_RINGBUFFER_SIZE = 256U; +const uint16_t RX_RINGBUFFER_SIZE = 256U; extern MMDVM_STATE m_modemState; extern MMDVM_STATE m_modemState_prev;