1.2.5.49 ADP_LBP_IND_CALLBACK Typedef

C

typedef void (*ADP_LBP_IND_CALLBACK)(ADP_LBP_IND_PARAMS* pLbpInd);

Summary

Pointer to a LBP Indication Event handler function.

Description

This data type defines the required function signature for the ADP LBP Indication event handling callback function. The ADP LBP Indication primitive is used to transfer received LBP data from the adaptation sublayer to the upper layer. 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 LBP Indication events back from module.

Parameters

ParamDescription
pLbpIndPointer to structure containing parameters related to Indication. See ADP_LBP_IND_PARAMS

Returns

None.

Example

App_LbpIndication(ADP_LBP_IND_PARAMS *params)
{
    // Check data content in params->pNsdu
}

Remarks

This callback is registered and managed by the provided LBP module. Application does not have to manage it.