From 8ee2219b9686e80cc3b911307965729dde0ca83e Mon Sep 17 00:00:00 2001 From: f4exb Date: Mon, 15 Aug 2016 10:36:32 +0200 Subject: [PATCH] DSD DPMR support: show own and called Ids in the info display --- plugins/channel/demoddsd/dsddemodgui.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/plugins/channel/demoddsd/dsddemodgui.cpp b/plugins/channel/demoddsd/dsddemodgui.cpp index 9429f217c..66c5e4ac3 100644 --- a/plugins/channel/demoddsd/dsddemodgui.cpp +++ b/plugins/channel/demoddsd/dsddemodgui.cpp @@ -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: