Part Number: CC2530
Hi. How can I make it so that a router is able to do a MAC data poll on its parent every 30 seconds?
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.
I tried using your code from sunmaysky.blogspot.tw/.../how-to-handle-end-node-announcement.html, but the endpoint request doesn't show up on Ubiqua and I don't think what I've done is working. What is wrong?
You can use the following code to to active endpoint request to coordinator.
zAddrType_t destAddr;
uint16 shortAddr;
/* Dev address */
destAddr.addrMode = Addr16Bit;
destAddr.addr.shortAddr = 0x0000;
/* Network address of interest */
shortAddr = 0x0000;
ZDP_ActiveEPReq( &destAddr, shortAddr, 0);