1.2.5.14 ADP_SetNotificationsToLbp Function

C

void ADP_SetNotificationsToLbp (
    ADP_NOTIFICATIONS_TO_LBP* pNotifications
);

Summary

Sets ADP notifications to LBP.

Description

This routine sets the ADP notifications to LBP. Callback handlers for event notification are set in this function. As it is called from provided LBP Module, it is not intended to be called from Application.

Parameters

ParamDescription
pNotificationsPointer to structure with callbacks used to notify ADP LBP specific events. See ADP_NOTIFICATIONS_TO_LBP

Returns

None.

Example

ADP_NOTIFICATIONS_TO_LBP adpNotifications = {
    .lbpConfirm = appLbpConfirm,
    .lbpIndication = appLbpIndication
};

ADP_SetNotificationsToLbp(&adpNotifications);

Remarks

None.