1.42.5.23 HEMC_CALLBACK Typedef

C

typedef void (*HEMC_CALLBACK) (uintptr_t contextHandle)

Summary

HEMC Callback Function Pointer.

Description

This data type defines the required function signature for the HEMC callback function. Application must register a pointer to a callback function whose function signature (parameter and return value types) match the types specified by this function pointer in order to receive callback from the PLIB. The parameters and return values are described here and a partial example implementation is provided.

Parameters

Param Description
contextHandle Value identifying the context of the application that registered the callback function

Returns

None.

Example

void APP_HEMC_FixHandler(uintptr_t contextHandle)
{
    //Fixable error has occurred
}

HEMC_FixCallbackRegister(&APP_HEMC_FixHandler, (uintptr_t)NULL);

Remarks

The contextHandle parameter contains the a handle to the client context, provided at the time the callback function was registered using the CallbackRegister function. This contextHandle value is passed back to the client as the "contextHandle" parameter. It can be any value (such as a pointer to the client's data) necessary to identify the client context or instance of the client that made the data transfer request. The callback function executes in the PLIB's interrupt context. It is recommended of the application to not perform process intensive or blocking operations with in this function.