3.2.35 MLME_PollReq_t Struct

C

typedef struct mlme_poll_req_tag {
    /* This identifies the message as \ref MLME_POLL_REQUEST */
    enum msg_code cmdcode;
    
    /** The addressing mode of the coordinator to which the poll is intended.
    * This parameter can take one of the following values: 2 = 16 bit short
    * address, 3 = 64 bit extended address. */
    uint8_t CoordAddrMode;
    
    /** The PAN identifier of the coordinator to which the poll is intended. */
    uint16_t CoordPANId;
    
    /** The address of the coordinator to which the poll is intended. */
    uint64_t CoordAddress;
} MLME_PollReq_t;

Summary

MLME_PollReq_t holds the MLME-POLL.request message structure

Description

None

Remarks

None