1.2.5.93 LBP_SetNotificationsCoord Function

C

void LBP_SetNotificationsCoord (
    LBP_NOTIFICATIONS_COORD *pNotifications
);

Summary

Sets Coordinator LBP notifications.

Description

This routine sets the Coordinator LBP notifications. Callback handlers for event notification are set in this function.

Parameters

ParamDescription
pNotificationsPointer to structure with callbacks used to notify Coordinator LBP events. See LBP_NOTIFICATIONS_COORD

Returns

None.

Example

LBP_NOTIFICATIONS_COORD lbpNotifications = {
    .joinRequestIndication = appLbpJoinRequestIndication,
    .joinCompleteIndication = appLbpJoinCompleteIndication,
    .leaveIndication = appLbpLeaveIndication
};

LBP_SetNotificationsCoord(&lbpNotifications);

Remarks

This function is part of the Coordinator LBP Module.