pub unsafe extern "C" fn mcpwm_generator_set_actions_on_timer_event(
    gen: mcpwm_gen_handle_t,
    ev_act: mcpwm_gen_timer_event_action_t
    ...
) -> esp_err_t
Expand description

@brief Set generator actions on multiple MCPWM timer events

@note This is an aggregation version of mcpwm_generator_set_action_on_timer_event, which allows user to set multiple actions in one call.

@param[in] gen MCPWM generator handle, allocated by mcpwm_new_generator() @param[in] ev_act MCPWM timer event action list, must be terminated by MCPWM_GEN_TIMER_EVENT_ACTION_END() @return - ESP_OK: Set generator actions successfully - ESP_ERR_INVALID_ARG: Set generator actions failed because of invalid argument - ESP_ERR_INVALID_STATE: Set generator actions failed because of timer is not connected to operator - ESP_FAIL: Set generator actions failed because of other error