Increasing ring buffer lengths

This commit is contained in:
Andy CA6JAU 2018-05-14 22:41:26 -04:00
parent e1b99f6ee4
commit c11ff6bf20
4 changed files with 4 additions and 4 deletions

View File

@ -45,7 +45,7 @@ const uint8_t NXDN_PREAMBLE[] = {0x57U, 0x75U, 0xFDU};
const uint8_t NXDN_SYNC = 0x5FU;
CNXDNTX::CNXDNTX() :
m_buffer(2000U),
m_buffer(4000U),
m_modFilter(),
m_sincFilter(),
m_modState(),

View File

@ -43,7 +43,7 @@ const q15_t P25_LEVELD = -1260;
const uint8_t P25_START_SYNC = 0x77U;
CP25TX::CP25TX() :
m_buffer(1500U),
m_buffer(4000U),
m_modFilter(),
m_lpFilter(),
m_modState(),

View File

@ -32,7 +32,7 @@ Boston, MA 02110-1301, USA.
#include <Arduino.h>
#endif
const uint16_t SERIAL_RINGBUFFER_SIZE = 370U;
const uint16_t SERIAL_RINGBUFFER_SIZE = 2000U;
class CSerialRB {
public:

View File

@ -43,7 +43,7 @@ const uint8_t YSF_START_SYNC = 0x77U;
const uint8_t YSF_END_SYNC = 0xFFU;
CYSFTX::CYSFTX() :
m_buffer(1500U),
m_buffer(4000U),
m_modFilter(),
m_modState(),
m_poBuffer(),