Is it possible to bind end device with coordinator?
If so means, how can i?
please give the methods,,,
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
if ( keys & HAL_KEY_SW_2 )
{
HalLedSet ( HAL_LED_4, HAL_LED_MODE_OFF );
// Initiate an End Device Bind Request for the mandatory endpoint
dstAddr.addrMode = Addr16Bit;
dstAddr.addr.shortAddr = 0x0000; // Coordinator
ZDP_EndDeviceBindReq( &dstAddr , NLME_GetShortAddr(),
GenericApp_epDesc.endPoint,
GENERICAPP_PROFID,
GENERICAPP_MAX_CLUSTERS, (cId_t *)GenericApp_ClusterList,
GENERICAPP_MAX_CLUSTERS, (cId_t *)GenericApp_ClusterList,
FALSE ); // i chnge dest address
}
using this I bind the end device with coordinator....
and then I have pressed SW1 to send message.
if ( keys & HAL_KEY_SW_1 )
{
GenericApp_SendTheMessage();
}
put it doesn't submitted successfully,,,,
i don't have packet sniffer....
I choose below one ....
GenericApp_DstAddr.addrMode = (afAddrMode_t)afAddrNotPresent;
GenericApp_DstAddr.endPoint = GENERICAPP_ENDPOINT;
GenericApp_DstAddr.addr.shortAddr = XXXX;
wat value is present in short address?
I have seen ur old post... you told to use 0XFFFE in short address... what means that?
post link is: http://e2e.ti.com/support/low_power_rf/f/158/t/232996.aspx?pi267162=1
I would suggest you to use original GenricApp to test end device binding. Make a GenericApp coordinator and end device first. After end device joins coordinator, you can press SW2 on bothe coordinator and end device to send end device binding request. After that, you should see Hello World on LCD of coordinator which mean binding is success.
its working sir...
but binding is succeeded 4th time switch press... what is the problem for that?
note:
1)press button in end device,and in coordinator = not response...
2)press button in end device,and in coordinator = not response...
3)press button in end device,and in coordinator = not response...
4)press button in end device,and in coordinator = responded- bind success...