[][src]Function esp_idf_bindgen::esp_event_send_internal

pub unsafe extern "C" fn esp_event_send_internal(
    event_base: esp_event_base_t,
    event_id: i32,
    event_data: *mut c_void,
    event_data_size: size_t,
    ticks_to_wait: TickType_t
) -> esp_err_t

@brief Send a event to event task

@note This API is used by WiFi Driver only.

Other task/modules, such as the tcpip_adapter, can call this API to send an event to event task

@param[in] event_base the event base that identifies the event @param[in] event_id the event id that identifies the event @param[in] event_data the data, specific to the event occurence, that gets passed to the handler @param[in] event_data_size the size of the event data @param[in] ticks_to_wait number of ticks to block on a full event queue

@return ESP_OK : succeed @return others : fail