1.2.5.50 ADP_LBP_IND_PARAMS Struct
C
typedef struct
{
    /* The received NSDU */
    const uint8_t* pNsdu;
    /* The size of the NSDU, in bytes; Up to ADP_LBP_MAX_NSDU_LENGTH bytes */
    uint16_t nsduLength;
    /* Source Address of the LBP frame. Short Address for LBA or LBS frames,
     * extended for LBD. */
    ADP_ADDRESS srcAddr;
    /* The Security Level of the received frame */
    uint8_t securityLevel;
} ADP_LBP_IND_PARAMS;Summary
Defines the Parameters for the ADP LBP Indication event handler function.
Description
The structure contains the fields reported by the ADP LBP Indication event handler function.
Field description:
pNsdu. Pointer to the received NSDU.
nsduLength. The size of the NSDU, in bytes; Up to ADP_LBP_MAX_NSDU_LENGTH bytes.
srcAddr. Source Address of the LBP frame. Short Address for LBA or LBS frames, extended for LBD.
securityLevel. The Security Level of the received frame.
Remarks
None.
