1.2.5.10 ADP_SetDataNotifications Function
C
void ADP_SetDataNotifications (
    ADP_DATA_NOTIFICATIONS* pNotifications
);Summary
Sets ADP data notifications.
Description
This routine sets the ADP data notifications. Callback handlers for event notification are set in this function.
Parameters
| Param | Description | 
|---|---|
| pNotifications | Pointer to structure with callbacks used to notify ADP data specific events. See ADP_DATA_NOTIFICATIONS | 
Returns
None.
Example
ADP_DATA_NOTIFICATIONS adpNotifications = {
    .dataConfirm = appDataConfirm,
    .dataIndication = appDataIndication
};
ADP_SetDataNotifications(&adpNotifications);Remarks
None.
