mirror of
https://github.com/g4klx/MMDVMHost
synced 2025-12-21 15:09:23 +08:00
Display DMR embedded data.
This commit is contained in:
@@ -115,7 +115,12 @@ const unsigned char FID_DMRA = 16U;
|
|||||||
|
|
||||||
enum FLCO {
|
enum FLCO {
|
||||||
FLCO_GROUP = 0,
|
FLCO_GROUP = 0,
|
||||||
FLCO_USER_USER = 3
|
FLCO_USER_USER = 3,
|
||||||
|
FLCO_TALKER_ALIAS_HEADER = 4,
|
||||||
|
FLCO_TALKER_ALIAS_BLOCK1 = 5,
|
||||||
|
FLCO_TALKER_ALIAS_BLOCK2 = 6,
|
||||||
|
FLCO_TALKER_ALIAS_BLOCK3 = 7,
|
||||||
|
FLCO_GPS_INFO = 8
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -258,7 +258,28 @@ CDMRLC* CDMREmbeddedLC::processMultiBlockEmbeddedLC()
|
|||||||
case FLCO_GROUP:
|
case FLCO_GROUP:
|
||||||
case FLCO_USER_USER:
|
case FLCO_USER_USER:
|
||||||
return lc;
|
return lc;
|
||||||
|
case FLCO_GPS_INFO:
|
||||||
|
CUtils::dump(1U, "DMR, Embedded GPS Info", lcData, 72U);
|
||||||
|
delete lc;
|
||||||
|
return NULL;
|
||||||
|
case FLCO_TALKER_ALIAS_HEADER:
|
||||||
|
CUtils::dump(1U, "DMR, Embedded Talker Alias Header", lcData, 72U);
|
||||||
|
delete lc;
|
||||||
|
return NULL;
|
||||||
|
case FLCO_TALKER_ALIAS_BLOCK1:
|
||||||
|
CUtils::dump(1U, "DMR, Embedded Talker Alias Block 1", lcData, 72U);
|
||||||
|
delete lc;
|
||||||
|
return NULL;
|
||||||
|
case FLCO_TALKER_ALIAS_BLOCK2:
|
||||||
|
CUtils::dump(1U, "DMR, Embedded Talker Alias Block 2", lcData, 72U);
|
||||||
|
delete lc;
|
||||||
|
return NULL;
|
||||||
|
case FLCO_TALKER_ALIAS_BLOCK3:
|
||||||
|
CUtils::dump(1U, "DMR, Embedded Talker Alias Block 3", lcData, 72U);
|
||||||
|
delete lc;
|
||||||
|
return NULL;
|
||||||
default:
|
default:
|
||||||
|
CUtils::dump(1U, "DMR, Unknown Embedded Data", lcData, 72U);
|
||||||
delete lc;
|
delete lc;
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user