mirror of https://github.com/lwvmobile/dsd-fme.git
P25 -- Fix Alignment; Fix Compiler Warning;
This commit is contained in:
parent
daecac1612
commit
29cd61fdcd
|
|
@ -153,14 +153,14 @@ void processTSBK(dsd_opts * opts, dsd_state * state)
|
|||
fprintf (stderr, " %s",KNRM);
|
||||
|
||||
//This seems to follow the same structure as the MFID 90 Group Regroup Add Command
|
||||
|
||||
//MFID A4 Opcode 1 on TSBK / Opcode 0x41 on vPDU
|
||||
// P25 PDU Payload #1 [81][A4] [11][0D] [83][4E] [84][2A] [84][EE] -------[39][30]
|
||||
// MFID A4 Protected: 0 Last Block: 1
|
||||
|
||||
//these values do seem to change, but not often, but seem to pair up into 16-bit values
|
||||
// P25 PDU Payload #1 [81][A4] [11][0D] [84][2A] [84][EE] [FF][FF] -------[4D][2F]
|
||||
// MFID A4 Protected: 0 Last Block: 1
|
||||
//MFID A4 Opcode 1 on TSBK / Opcode 0x41 on vPDU
|
||||
// P25 PDU Payload #1 [81][A4] [11][0D] [83][4E] [84][2A] [84][EE] -------[39][30]
|
||||
// MFID A4 Protected: 0 Last Block: 1
|
||||
|
||||
//these values do seem to change, but not often, but seem to pair up into 16-bit values
|
||||
// P25 PDU Payload #1 [81][A4] [11][0D] [84][2A] [84][EE] [FF][FF] -------[4D][2F]
|
||||
// MFID A4 Protected: 0 Last Block: 1
|
||||
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1177,9 +1177,9 @@ void process_MAC_VPDU(dsd_opts * opts, dsd_state * state, int type, unsigned lon
|
|||
int res = MAC[3+len_a] >> 6;
|
||||
if (len > 24)
|
||||
len = 24; //should never exceed this len, but just in case it does
|
||||
fprintf (stderr, "\n MFID A4 (Harris); Res: %d; Len: %d; Opcode: %02X; ", res, len, MAC[1+len_a]);
|
||||
fprintf (stderr, "\n MFID A4 (Harris); Res: %d; Len: %d; Opcode: %02llX; ", res, len, MAC[1+len_a]);
|
||||
for (i = 1; i < len; i++)
|
||||
fprintf (stderr, "%02X", MAC[i+len_a]); //might not be a good idea to run this, or it may overflow
|
||||
fprintf (stderr, "%02llX", MAC[i+len_a]); //might not be a good idea to run this, or it may overflow
|
||||
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue