2.90.38 PWM_GENERATOR_EOC_EVENT_CALLBACK Typedef
C
typedef void (*PWM_GENERATOR_EOC_EVENT_CALLBACK) (PWM_GENERATOR genNum, uintptr_t context);
Summary
Callback function type for PWM generator End of Conversion (EOC) event.
Description
This typedef defines a function pointer type for a callback function that is used to handle PWM generator End of Conversion (EOC) event. The callback function is called when an Individual PWM Generator EOC event.
Precondition
The "pin" parameter indicates which external interrupt pin triggered the callback, and the con parameter allows for user-specific data to be passed to the callback function.
Parameters
Param | Description |
---|---|
pin | The external interrupt pin that triggered the callback |
context | An user-defined context or data passed to the callback function. |
Returns
None.
Example
void my_callback(PWM_GENERATOR genNum, uintptr_t context) {
.......
}
PWM_GENERATOR_EOC_EVENT_CALLBACK callback = my_callback;
Remarks
None.