mirror of
https://github.com/g4klx/MMDVM_HS.git
synced 2026-01-07 01:00:48 +01:00
Increasing buffers (IO and DMR) for BlueDV compatibility
This commit is contained in:
parent
2beb3d7618
commit
d2f5386164
|
|
@ -24,7 +24,7 @@
|
|||
const uint8_t DMR_SYNC = 0x5FU;
|
||||
|
||||
CDMRDMOTX::CDMRDMOTX() :
|
||||
m_fifo(),
|
||||
m_fifo(875U),
|
||||
m_poBuffer(),
|
||||
m_poLen(0U),
|
||||
m_poPtr(0U),
|
||||
|
|
|
|||
|
|
@ -62,8 +62,8 @@ const uint8_t MARK_NONE = 0x00U;
|
|||
#include "Debug.h"
|
||||
#include "Utils.h"
|
||||
|
||||
const uint16_t TX_RINGBUFFER_SIZE = 512U;
|
||||
const uint16_t RX_RINGBUFFER_SIZE = 512U;
|
||||
const uint16_t TX_RINGBUFFER_SIZE = 1024U;
|
||||
const uint16_t RX_RINGBUFFER_SIZE = 1024U;
|
||||
|
||||
extern MMDVM_STATE m_modemState;
|
||||
extern MMDVM_STATE m_modemState_prev;
|
||||
|
|
|
|||
Loading…
Reference in a new issue