1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-10-01 01:06:35 -04:00

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

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: