ZPS_tsAplZdpUserDescRsp#
This structure is used to store User_Desc_rsp message data - a response to a call to the function ZPS_eAplZdpUserDescRequest(). This response contains the User descriptor of the node with a given network address.
The ZPS_tsAplZdpUserDescRspstructure is detailed below.
typedef struct {
uint8 u8Status;
uint16 u16NwkAddrOfInterest;
uint8 u8Length;
/* Rest of the message is variable Length */
char szUserDescriptor[ZPS_ZDP_LENGTH_OF_USER_DESC];
} ZPS_tsAplZdpUserDescRsp;
where:
u8Statusis the return status for ZPS_eAplZdpUserDescRequest().u16NwkAddrOfInterestis the network address of the remote node that sent the response (this is the network address that was specified in the request).u8Lengthis the length of the returned User descriptor, in bytes (maximum: 16).szUserDescriptoris the returned User descriptor as a character array. This is only included ifu8Statusreports success.
Parent topic:ZDP response structures