Hi there,
I would like, upon user interaction, that a device broadcasts an Identify Query command to search for devices that are currently identifying and afterwards it sends a Match_Desc_req just to those which replied to the Identify Query.
I am sending out an Identify Query command in this way:
static afAddrType_t dstAddr1;
dstAddr1.addrMode=AddrBroadcast;
dstAddr1.addr.shortAddr=NWK_BROADCAST_SHORTADDR;
zclGeneral_SendIdentifyQuery(SAMPLESW_ENDPOINT, &dstAddr1, false, 0);
I can actually track the packet with the sniffer:
However no devices replies. Why? am I missing something? What could be the reason of this behavior?
thanks