File tree 2 files changed +4
-0
lines changed
2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -93,7 +93,9 @@ namespace p25
93
93
const uint8_t P25_DUID_HDU = 0x00U ; // Header Data Unit
94
94
const uint8_t P25_DUID_TDU = 0x03U ; // Simple Terminator Data Unit
95
95
const uint8_t P25_DUID_LDU1 = 0x05U ; // Logical Link Data Unit 1
96
+ const uint8_t P25_DUID_VSELP1 = 0x06U ; // Motorola VSELP 1
96
97
const uint8_t P25_DUID_TSDU = 0x07U ; // Trunking System Data Unit
98
+ const uint8_t P25_DUID_VSELP2 = 0x09U ; // Motorola VSELP 2
97
99
const uint8_t P25_DUID_LDU2 = 0x0AU ; // Logical Link Data Unit 2
98
100
const uint8_t P25_DUID_PDU = 0x0CU ; // Packet Data Unit
99
101
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)
152
152
}
153
153
break ;
154
154
case P25_DUID_LDU1:
155
+ case P25_DUID_VSELP1:
155
156
m_state = P25RXS_VOICE;
156
157
m_endPtr = P25_LDU_FRAME_LENGTH_BITS;
157
158
return ;
@@ -162,6 +163,7 @@ void P25RX::processBit(bool bit)
162
163
}
163
164
break ;
164
165
case P25_DUID_LDU2:
166
+ case P25_DUID_VSELP2:
165
167
m_state = P25RXS_VOICE;
166
168
m_endPtr = P25_LDU_FRAME_LENGTH_BITS;
167
169
return ;
You can’t perform that action at this time.
0 commit comments