Part Number: CC2538
Other Parts Discussed in Thread: CC2652R, Z-STACK
I am trying to implement interpan communication between a coordinator(cc2538 with zstack 3.0.2) which has the ota dongle example and a router that has the generic example(cc2652R with latest sdk). I send the message from the router and I can see it in the packet sniffer but the coordinator does not receive it. What do I have to do to make it work?
A screenshot of the packet:

The router code:
if(_btn == gRightButtonHandle)
{
zstack_getZCLFrameCounterRsp_t pRsp;
Zstackapi_getZCLFrameCounterReq(appServiceTaskId, &pRsp);
StubAPS_SetInterPanChannel(0x0F);
dstAddr.addrMode= afAddrBroadcast;
dstAddr.addr.shortAddr = NWK_BROADCAST_SHORTADDR_DEVALL;
dstAddr.endPoint = STUBAPS_INTER_PAN_EP;
dstAddr.panId = 0xFFFF;
static uint8_t inter_msg[] = {"HELLO, WORLD!"};
if(AF_DataRequest(&dstAddr,
&zclGenericAppEpDesc,
0x0000,
sizeof(inter_msg),
inter_msg,
&(pRsp.zclFrameCounter),
AF_DISCV_ROUTE,
AF_DEFAULT_RADIUS) == afStatus_SUCCESS )
{
}
else{
StubAPS_SetIntraPanChannel();
}
//Zstackapi_bdbResetLocalActionReq(appServiceTaskId);
}
