This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

CC2538: Z-Stack Linux Gateway RAW Data packets decoding

Part Number: CC2538
Other Parts Discussed in Thread: Z-STACK

Hello E2E Community,
I am using CC2538 module with BBB, till now I am able to run ./start_application &  ./zigbeeHAgw bbb applications successfully.
I was sending a permit join request from start applications to open the network for joining & just gone through the logs.
The logs likely as given below,
comm_send_permit_join: Sending NWK_SET_PERMIT_JOIN_REQ with Join Time 0x3c
permitjoin packet :                                                                                                                   
[                           NWK_MGR<<<<<<<<<<<SMPLAPP] NwkSetPermitJoinReq         
                                                    
sent to NWK_MGR: len=6, cmd_id=12, subsystem=18                                                                                        
   Raw=06:00:12:0C:08:0C:10:01:18:3C                                                                                                     
received from NWK_MGR: len=4, cmd_id=0, subsystem=114
   Raw=04:00:72:00:08:00:10:00                                                                                                           
 [                           NWK_MGR>>>>>>>>>>>SMPLAPP] NwkZigbeeGenericCnf                                                             
Calling confirmation callback
comm_process_permit_join: Received ZIGBEE_GENERIC_CNF                                                                                  
comm_process_permit_join: Status SUCCESS.                                                                                              
comm_process_permit_join: Requested join time 60  
Now my question is...
1. how would I know the description of packet we are sending for the permit join request? (Raw=06:00:12:0C:08:0C:10:01:18:3C)
     as per my knowledge sent packet contains,
                      06:00   =   length of packet data.( which is 16 bit integer value)
                           12   =   Z_STACK_NWK_MGR_SYS_ID_T__RPC_SYS_PB_NWK_MGR (Sub-System)
                           0C  =   NWK_MGR_CMD_ID_T__NWK_SET_PERMIT_JOIN_REQ (Command ID)
                      &  3C   =   permit join time   
  but I am not able to find what except field's means (08:0C:10:01:18)
 same for the Received packet.
I had followed the Z-stack Linux Gateway-API document &  Z-stack Linux Developer's Guide documentation.
will you please help me to solve this problem?...
Thank & regards
Shiv Patil.