mirror of
https://github.com/g4klx/MMDVMHost.git
synced 2026-04-18 04:43:48 +00:00
Fix P25 data reception, regeneration, and transmission.
This commit is contained in:
parent
323179d525
commit
082c2e1b1f
4 changed files with 96 additions and 43 deletions
|
|
@ -42,7 +42,12 @@ const unsigned char P25_SYNC_BYTES_LENGTH = 6U;
|
|||
|
||||
const unsigned int P25_MAX_PDU_COUNT = 10U;
|
||||
|
||||
const unsigned int P25_PDU_HEADER_LENGTH_BYTES = 12U;
|
||||
const unsigned int P25_PDU_HEADER_LENGTH_BYTES = 12U;
|
||||
const unsigned int P25_PDU_CONFIRMED_LENGTH_BYTES = 18U;
|
||||
const unsigned int P25_PDU_UNCONFIRMED_LENGTH_BYTES = 12U;
|
||||
|
||||
const unsigned int P25_PDU_FEC_LENGTH_BYTES = 24U;
|
||||
const unsigned int P25_PDU_FEC_LENGTH_BITS = P25_PDU_FEC_LENGTH_BYTES * 8U;
|
||||
|
||||
const unsigned int P25_MI_LENGTH_BYTES = 9U;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue