Hi, I'm trying to bind a cc2630 end device with a coordinator, below shows used codes.
---------------------------------------------------------------------------------------------------------------
static uint16_t inputClusters2[1] =
{
ZCL_CLUSTER_ID_MS_TEMPERATURE_MEASUREMENT
};
zAddrType_t dstAddr;
dstAddr.addr.shortAddr = 0x0000;
dstAddr.addrMode = Addr16Bit;
zcl_EZModeBindAddEntry(TEMPSENSOR_EP, &dstAddr, TEMPSENSOR_EP, 1, inputClusters2);
---------------------------------------------------------------------------------------------------------------
The problem is, when I analyze the bind request packet, the short address of destination is changed to 0x0424 at somewhere in the code.
I tried to find where code changes, but, I cannot debug or trace ZStackCore, where the actual bind request function called.
So, my questions are:
1. Is there any problem with my code?
2. Why the destination address changes?
Thank you in advance.