/** @brief Sends a broadcast message as per the ZigBee specification.
*
* The message will be delivered to all nodes within @c radius
* hops of the sender. A radius of zero is converted to ::EMBER_MAX_HOPS.
*
* @param destination The destination to which to send the broadcast.
* This must be one of three ZigBee broadcast addresses.
*
* @param apsFrame The APS frame data to be included in the message.
*
* @param radius The maximum number of hops the message will be relayed.
*
* @param message The actual message to be sent.
*
* @return An ::EmberStatus value.
*/
EmberStatus emberSendBroadcast(EmberNodeId destination,
EmberApsFrame *apsFrame,
int8u radius,
EmberMessageBuffer message);