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

DSD demod: more frame statuses in DSDcc

This commit is contained in:
f4exb 2016-08-15 02:51:51 +02:00
parent 1eb3db0291
commit a6987baad1
2 changed files with 3 additions and 1 deletions

View File

@ -46,6 +46,8 @@ char DSDDemodGUI::m_dpmrFrameTypes[][3] = {
"HD", // header frame "HD", // header frame
"PY", // payload super frame not categorized yet "PY", // payload super frame not categorized yet
"VO", // voice super frame "VO", // voice super frame
"VS", // voice super frame with slow data (SLD)
"VD", // voice and data superframe
"D1", // data type 1 super frame "D1", // data type 1 super frame
"D2", // data type 2 super frame "D2", // data type 2 super frame
"EN", // end frame "EN", // end frame

View File

@ -101,7 +101,7 @@ private:
MovingAverage<Real> m_channelPowerDbAvg; MovingAverage<Real> m_channelPowerDbAvg;
int m_tickCount; int m_tickCount;
static char m_dpmrFrameTypes[8][3]; static char m_dpmrFrameTypes[10][3];
explicit DSDDemodGUI(PluginAPI* pluginAPI, DeviceAPI *deviceAPI, QWidget* parent = NULL); explicit DSDDemodGUI(PluginAPI* pluginAPI, DeviceAPI *deviceAPI, QWidget* parent = NULL);
virtual ~DSDDemodGUI(); virtual ~DSDDemodGUI();