1.25.5.30 1.26.4.30 DBGU_CALLBACK Typedef
C
/* Non-blocking mode */ typedef void (*DBGU_CALLBACK)( uintptr_t context );
Summary
Defines the data type and function signature of the DBGU peripheral library callback function.
Description
This data type defines the function signature of the DBGU peripheral callback function. The DBGU peripheral will call back the client's function with this signature to notify the application when a transfer has completed or when a transfer error has occured.
Precondition
DBGU_Initialize must have been called for the given DBGU peripheral instance and DBGU_CallbackRegister must have been called to set the function to be called.
Parameters
Param | Description |
---|---|
context | Allows the caller to provide a context value (usually a pointer to the callers context for multiple clients). |
Returns
None.
Example
void DBGUReadCallback(uintptr_t context) { // This function will be called when a DBGU read has completed. } void DBGUWriteCallback(uintptr_t context) { // This function will be called when a DBGU write has completed. } DBGU_ReadCallbackRegister(DBGUReadCallback, 0); DBGU_WriteCallbackRegister(DBGUWriteCallback, 0);
Remarks
None.