Hello,
I would like to know how to check an endpoint registration after using the function:
Code:
ZCL_RegisterEndpoint(&economizerEndpoint);
If I use the function
Code:
APS_RegisterEndpointReq(&endpoint);
it is possible to check the endpoint status:
Code:
if (APS_SUCCESS_STATUS == endpoint.status)
{
appSnprintf("end point registered ok\r\n");
}
else
appSnprintf("error\r\n");
Is there any equivalent function for ZCL_RegisterEndpoint function?
Best regards, |