1.2.5.57 ADP_NETWORK_STATUS_IND_PARAMS Struct

C

typedef struct
{
    /* The 16-bit PAN identifier of the device from which the frame was received */
    uint16_t panId;
    /* The status/event reported by the primitive */
    uint8_t status;
    /* The security level used by the received frame */
    uint8_t securityLevel;
    /* The index of the key used by the originator of the received frame */
    uint8_t keyIndex;
    /* The medium (PLC/RF) from which the frame was received */
    uint8_t mediaType;
    /* The individual device address of the entity from which the frame causing
     * the error originated */
    ADP_ADDRESS srcDeviceAddress;
    /* The individual device address of the device for which the frame was
     * intended */
    ADP_ADDRESS dstDeviceAddress;
} ADP_NETWORK_STATUS_IND_PARAMS;

Summary

Defines the Parameters for the ADP Network Status Indication event handler function.

Description

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

Field description:

  • panId. The 16-bit PAN identifier of the device from which the frame was received.

  • status. The status/event reported by the primitive.

  • securityLevel. The security level used by the received frame.

  • keyIndex. The index of the key used by the originator of the received frame.

  • mediaType. The medium (PLC/RF) from which the frame was received.

  • srcDeviceAddress. The device address of the entity from which the frame causing the error originated.

  • dstDeviceAddress. The device address of the device for which the frame was intended.

Remarks

None.