ZDO_ResetNetworkReq_t Struct
C
typedef struct
{
/** \cond SERVICE_FIELDS **/
struct
{
#ifdef _ZAPPSI_
void *next;
/* Sequence number to identify request-response pair. */
uint8_t sequenceNumber;
/* to be compatible with MAC and SSP service. */
uint8_t requestId;
union
{
/* Callback wrapper routine pointer */
void (*callback)(void*);
/* Processing routine pointer to call after required memory will become free */
void (*process)(void*);
} zsi;
APS_ResetReq_t apsResetReq;
} service; //!< Service field for internal use only, should not be touched by user
/** \endcond **/
ZDO_ResetNetworkConf_t confParams; //!< Parameters of the confirm being returned in ZDO_ResetNetworkConf()
void (*ZDO_ResetNetworkConf)(ZDO_ResetNetworkConf_t *conf); //!< The function called to confirm the request. Must not be set to NULL.
} ZDO_ResetNetworkReq_t;
Description
Describes the parameters of the ZDO_ResetNetworkReq() function.
