Posts an event to the specified event loop. The event loop library keeps a copy of event_data and manages the copy's lifetime automatically (allocation + deletion); this ensures that the data the handler receives is always valid. This function behaves in the same manner as esp_event_post, except the additional specification of the event loop to post the event to.
the data, specific to the event occurrence, that gets passed to the handler
event_data_size
the size of the event data
ticks_to_wait
number of ticks to block on a full event queue
Return value
- ESP_OK: Success - ESP_ERR_TIMEOUT: Time to wait for event queue to unblock expired, queue full when posting from ISR - ESP_ERR_INVALID_ARG: Invalid combination of event base and event ID - Others: Fail
Examples
esp_event_post_to() is referenced by 2 libraries and example projects: