ZDO_StartNetworkReq_t Struct

C

typedef struct
{
    /** \cond SERVICE_FIELDS **/
    struct
    {
        void  *next;
        /* to be compatible with MAC and SSP service. */
        uint8_t requestId;
        /* Sequence number to identify request-response pair. */
        uint8_t sequenceNumber;
        union
        {
            /* Callback wrapper routine pointer */
            void (*callback)(void*);
            /* Processing routine pointer to call after required memory will become free */
            void (*process)(void*);
        } zsi;
    } service; //!< Service field for internal use only, should not be touched by user
    /** \endcond **/

    
    ZDO_StartNetworkConf_t confirm;  //!< Parameters of the confirm being returned in ZDO_StartNetworkConf()
    ShortAddr_t            parent;  //!< Known parent address (0xffff if unknown)
    /** The callback function to be called to confirm the request. Must not be set to NULL. */
    void (*ZDO_StartNetworkConf)(ZDO_StartNetworkConf_t *conf);
} ZDO_StartNetworkReq_t;

Description

Describes the parameters of the ZDO_StartNetworkReq() function.