Hi all,
I would like to use ZStack to transmit a broadcast message from End Devices to Routers/Coordinators without joining a network.
I did a quick test to kill the joining process when my application starts and send broadcast message with this destination address:
dstAddr.addrMode = (afAddrMode_t)AddrBroadcast;
dstAddr.endPoint = AF_BROADCAST_ENDPOINT;
dstAddr.addr.shortAddr = NWK_BROADCAST_SHORTADDR_DEVALL;
Doesn't work and I guess I need to specify MAC_PAN_ID_BROADCAST to make sure all PANs are included?
This is probably not very Zigbee-like and might flood the network if not handled with care... but is it possible?
Regards, TMA