Increase the output queue size.

This commit is contained in:
Jonathan Naylor 2016-05-10 18:54:35 +01:00
parent 62aa7a8103
commit 11907162e7
3 changed files with 3 additions and 3 deletions

View file

@ -50,7 +50,7 @@ bool CDMRSlot::m_voice2 = true;
CDMRSlot::CDMRSlot(unsigned int slotNo, unsigned int timeout) :
m_slotNo(slotNo),
m_queue(2000U, "DMR Slot"),
m_queue(5000U, "DMR Slot"),
m_rfState(RS_RF_LISTENING),
m_netState(RS_NET_IDLE),
m_rfEmbeddedLC(),

View file

@ -44,7 +44,7 @@ m_blackList(blackList),
m_network(network),
m_display(display),
m_duplex(duplex),
m_queue(2000U, "D-Star Control"),
m_queue(5000U, "D-Star Control"),
m_rfHeader(),
m_netHeader(),
m_rfState(RS_RF_LISTENING),

View file

@ -27,7 +27,7 @@
CYSFControl::CYSFControl(const std::string& callsign, CDisplay* display, unsigned int timeout, bool duplex, bool parrot) :
m_display(display),
m_duplex(duplex),
m_queue(2000U, "YSF Control"),
m_queue(5000U, "YSF Control"),
m_state(RS_RF_LISTENING),
m_timeoutTimer(1000U, timeout),
m_interval(),