3.2.14 MLME_AssociateResp_t Struct

C

typedef struct mlme_associate_resp_tag {
    /** This identifies the message as \ref MLME_ASSOCIATE_RESPONSE */
    enum msg_code cmdcode;
    /** The address of the device requesting association. */
    uint64_t DeviceAddress;
    
    /** The short device address allocated by the coordinator on successful
    * association. This parameter is set to 0xffff if the association was
    * unsuccessful. */
    uint16_t AssocShortAddress;
    /** The status of the association attempt. */
    uint8_t status;
} MLME_AssociateResp_t;

Summary

MLME_AssociateResp_t holds the MLME-ASSOCIATE.response message structure.

Description

None

Remarks

None