1.2.5.21 ADP_DATA_IND_PARAMS Struct

C

typedef struct
{
    /* The received NSDU */
    const uint8_t* pNsdu;
    /* The size of the NSDU, in bytes; Up to 1280 bytes */
    uint16_t nsduLength;
    /* The value of the link quality during reception of the frame */
    uint8_t linkQualityIndicator;
} ADP_DATA_IND_PARAMS;

Summary

Defines the Parameters for the ADP Data Indication event handler function.

Description

The structure contains the fields reported by the ADP Data Indication event handler function.

Field description:

  • pNsdu: Pointer to the received NSDU
  • nsduLength: The size of the NSDU, in bytes; Up to 1280 bytes
  • linkQualityIndicator: The value of the measured link quality during reception of the frame

Remarks

None.