1.2.5.90 LBP_COORD_LEAVE_IND_CALLBACK Typedef
C
typedef void (*LBP_COORD_LEAVE_IND_CALLBACK)(uint16_t networkAddress);
Summary
Pointer to a Leave Indication Event handler function.
Description
This data type defines the required function signature for the LBP Leave Indication event handling callback function.
The LBP Leave Indication primitive allows the upper layer to be notified when a device leaves the network.
A client must register a pointer using the event handling function whose function signature (parameter and return value types) matches the types specified by this function pointer in order to receive Leave Indication events back from module.
Parameters
Param | Description |
---|---|
networkAddress | The 16-bit address of device leaving the network |
Returns
None.
Example
App_LeaveIndication(uint16_t networkAddress) { // Device left the network }
Remarks
None.