When not connected to XLX, pass P25 destination TG and DMR destination TG back n forth. When connected to XLX, always use XLX module for DMR destintation TG

This commit is contained in:
Doug McLain 2020-06-19 14:08:11 -04:00
parent 9ccaa5882f
commit 0d21a6614e
1 changed files with 10 additions and 0 deletions

View File

@ -375,6 +375,11 @@ int CP252DMR::run()
m_conv.putP25Header();
}
m_p25Dst = dstId;
if(!m_xlxConnected){
m_dstid = m_p25Dst;
}
} else if (m_p25Frame[0U] == 0x66U && !m_p25info) {
srcId = (m_p25Frame[1U] << 16) & 0xFF0000U;
srcId |= (m_p25Frame[2U] << 8) & 0x00FF00U;
@ -646,6 +651,11 @@ int CP252DMR::run()
if (p25Watch.elapsed() > P25_FRAME_PER) {
unsigned int p25FrameType = m_conv.getP25(m_p25Frame);
m_p25Src = m_dmrSrc;
if(!m_xlxConnected){
m_p25Dst = m_dmrDst;
}
if(p25FrameType == TAG_HEADER) {
p25_cnt = 0U;
p25Watch.start();