1.2.5.76 LBP_ADP_NETWORK_LEAVE_IND_CALLBACK Typedef

C

typedef void (*LBP_ADP_NETWORK_LEAVE_IND_CALLBACK)(void);

Summary

Pointer to a Network Leave Indication Event handler function.

Description

This data type defines the required function signature for the ADP Network Leave Indication event handling callback function. The ADP Network Leave Indication primitive is is generated by the LBP layer of a non-coordinator device to inform the upper layer that it has been unregistered from the network by the coordinator.

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 ADP Network Leave Indication events back from module.

Parameters

None.

Returns

None.

Example

App_LbpLeaveIndication(void)
{
    // Device has been kicked from the Network
}

Remarks

None.