DSD DPMR support: show own and called Ids in the info display

This commit is contained in:
f4exb 2016-08-15 10:36:32 +02:00
parent a6987baad1
commit 8ee2219b96
1 changed files with 4 additions and 2 deletions

View File

@ -452,9 +452,11 @@ void DSDDemodGUI::formatStatusText()
m_signalFormat = signalFormatDStar;
break;
case DSDcc::DSDDecoder::DSDSyncDPMR:
sprintf(m_formatStatusText, "%s CC: %04d",
sprintf(m_formatStatusText, "%s CC: %04d OI: %06X CI: %06X",
m_dpmrFrameTypes[(int) m_dsdDemod->getDecoder().getDPMRDecoder().getFrameType()],
m_dsdDemod->getDecoder().getDPMRDecoder().getColorCode());
m_dsdDemod->getDecoder().getDPMRDecoder().getColorCode(),
m_dsdDemod->getDecoder().getDPMRDecoder().getOwnId(),
m_dsdDemod->getDecoder().getDPMRDecoder().getCalledId());
m_signalFormat = signalFormatDPMR;
break;
default: