1.10.13.8 MCPWM_PrimaryEventCallbackRegister Function

C

void MCPWM_PrimaryEventCallbackRegister (MCPWM_CALLBACK callback, uintptr_t context)

Summary

Registers the function to be called from interrupt

Description

This function registers the callback function to be called from primary event interrupt

Precondition

MCPWM_Initialize() must have been called first for the associated instance.

Parameters

Param Description
channel MCPWM channel number
callback callback function pointer
context Allows the caller to provide a context value (usually a pointer to the callers context for multi-instance clients)

Returns

None.

Example

void MCPWM_Callback_Fn(uintptr_t context);

MCPWM_Initialize();
MCPWM_PrimaryEventCallbackRegister(MCPWM_Callback_Fn, NULL);

Remarks

Context value can be set to NULL if not required. To disable callback function, pass NULL for the callback parameter.