File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -93,7 +93,9 @@ namespace p25
9393 const uint8_t P25_DUID_HDU = 0x00U ; // Header Data Unit
9494 const uint8_t P25_DUID_TDU = 0x03U ; // Simple Terminator Data Unit
9595 const uint8_t P25_DUID_LDU1 = 0x05U ; // Logical Link Data Unit 1
96+ const uint8_t P25_DUID_VSELP1 = 0x06U ; // Motorola VSELP 1
9697 const uint8_t P25_DUID_TSDU = 0x07U ; // Trunking System Data Unit
98+ const uint8_t P25_DUID_VSELP2 = 0x09U ; // Motorola VSELP 2
9799 const uint8_t P25_DUID_LDU2 = 0x0AU ; // Logical Link Data Unit 2
98100 const uint8_t P25_DUID_PDU = 0x0CU ; // Packet Data Unit
99101 const uint8_t P25_DUID_TDULC = 0x0FU ; // Terminator Data Unit with Link Control
Original file line number Diff line number Diff line change @@ -152,6 +152,7 @@ void P25RX::processBit(bool bit)
152152 }
153153 break ;
154154 case P25_DUID_LDU1:
155+ case P25_DUID_VSELP1:
155156 m_state = P25RXS_VOICE;
156157 m_endPtr = P25_LDU_FRAME_LENGTH_BITS;
157158 return ;
@@ -162,6 +163,7 @@ void P25RX::processBit(bool bit)
162163 }
163164 break ;
164165 case P25_DUID_LDU2:
166+ case P25_DUID_VSELP2:
165167 m_state = P25RXS_VOICE;
166168 m_endPtr = P25_LDU_FRAME_LENGTH_BITS;
167169 return ;
You can’t perform that action at this time.
0 commit comments