2.65.15 MCPWM_CallbackRegister Function

C

void MCPWM_CallbackRegister (MCPWM_CH_NUM channel, MCPWM_CH_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 interrupt

Precondition

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

Parameters

ParamDescription
channelMCPWM channel number
callbackcallback function pointer
contextAllows 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(MCPWM_CH_STATUS status, uintptr_t context);

MCPWM_Initialize();
MCPWM_CallbackRegister(MCPWM_CH_0, 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.