mirror of
https://github.com/f4exb/sdrangel.git
synced 2025-04-05 02:58:37 -04:00
DSD demod: use more detailed frame status instead of just synchronization indicator
This commit is contained in:
parent
a1b045b1db
commit
2d48800d90
@ -40,6 +40,15 @@ unsigned int DSDDemodBaudRates::m_rates[] = {2400, 4800};
|
||||
unsigned int DSDDemodBaudRates::m_nb_rates = 2;
|
||||
unsigned int DSDDemodBaudRates::m_defaultRateIndex = 1; // 4800 bauds
|
||||
|
||||
char DSDDemodGUI::m_frameTypes[][3] = {
|
||||
"--", // no frame sync
|
||||
"HD", // header frame
|
||||
"PY", // payload super frame not categorized yet
|
||||
"VO", // voice super frame
|
||||
"D1", // data type 1 super frame
|
||||
"D2", // data type 2 super frame
|
||||
"EN", // end frame
|
||||
};
|
||||
|
||||
DSDDemodGUI* DSDDemodGUI::create(PluginAPI* pluginAPI, DeviceAPI *deviceAPI)
|
||||
{
|
||||
@ -440,12 +449,9 @@ void DSDDemodGUI::formatStatusText()
|
||||
m_signalFormat = signalFormatDStar;
|
||||
break;
|
||||
case DSDcc::DSDDecoder::DSDSyncDPMR:
|
||||
if (m_signalFormat != signalFormatDPMR)
|
||||
{
|
||||
memcpy(&m_formatStatusText, " CC: ", 6);
|
||||
}
|
||||
sprintf(&m_formatStatusText[6], "%04d", m_dsdDemod->getDecoder().getDPMRDecoder().getColorCode());
|
||||
m_formatStatusText[0] = (m_dsdDemod->getDecoder().getDPMRDecoder().hasSync() ? 'S' : '-');
|
||||
sprintf(m_formatStatusText, "%s CC: %04d",
|
||||
m_frameTypes[(int) m_dsdDemod->getDecoder().getDPMRDecoder().getFrameType()],
|
||||
m_dsdDemod->getDecoder().getDPMRDecoder().getColorCode());
|
||||
m_signalFormat = signalFormatDPMR;
|
||||
break;
|
||||
default:
|
||||
|
@ -101,6 +101,8 @@ private:
|
||||
MovingAverage<Real> m_channelPowerDbAvg;
|
||||
int m_tickCount;
|
||||
|
||||
static char m_frameTypes[7][3];
|
||||
|
||||
explicit DSDDemodGUI(PluginAPI* pluginAPI, DeviceAPI *deviceAPI, QWidget* parent = NULL);
|
||||
virtual ~DSDDemodGUI();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user