pub unsafe extern "C" fn esp_intr_enable(
    handle: intr_handle_t
) -> esp_err_t
Expand description

@brief Enable the interrupt associated with the handle

@note For local interrupts (ESP_INTERNAL_* sources), this function has to be called on the CPU the interrupt is allocated on. Other interrupts have no such restriction.

@param handle The handle, as obtained by esp_intr_alloc or esp_intr_alloc_intrstatus

@return ESP_ERR_INVALID_ARG if the combination of arguments is invalid. ESP_OK otherwise