Hi,
i would like to
modify the Brodcast frame at Router side which is received from End Device .. I read the developer document that
"The Link Local subfield is 1 bit in length, and it may be set to one to prevent neighboring nodes from rebroadcasting a frame".. I set my code in End Device as
appNwkDataReq.dstAddr = 0xFFFF;
appNwkDataReq.dstEndpoint = APP_ENDPOINT;
appNwkDataReq.srcEndpoint = APP_ENDPOINT;
appNwkDataReq.options = NWK_OPT_ENABLE_SECURITY|NWK_OPT_LINK_LOCAL;
but the broadcast frames are still broadcasting from the Routers.. How can i manage this frames.. Is my configuration is ok?