[][src]Function esp_idf_bindgen::esp_event_process_default

pub unsafe extern "C" fn esp_event_process_default(
    event: *mut system_event_t
) -> esp_err_t

@brief Default event handler for system events

@note This API is part of the legacy event system. New code should use event library API in esp_event.h

This function performs default handling of system events. When using esp_event_loop APIs, it is called automatically before invoking the user-provided callback function.

Applications which implement a custom event loop must call this function as part of event processing.

@param event pointer to event to be handled @return ESP_OK if an event was handled successfully