ESP-IDF
esp_event_loop_instance
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
esp_event_loop_instance
esp_event_loop_instance struct
Event loop
Syntax
Show:
Summary
Declaration
from
esp_event_internal.h:70
typedef
struct
esp_event_loop_instance
{
const
char
*
name
;
QueueHandle_t
queue
;
TaskHandle_t
task
;
TaskHandle_t
running_task
;
SemaphoreHandle_t
mutex
;
esp_event_loop_nodes_t
loop_nodes
;
#ifdef
CONFIG_ESP_EVENT_LOOP_PROFILING
atomic_uint_least32_t
events_received
;
atomic_uint_least32_t
events_dropped
;
SLIST_ENTRY
(
esp_event_loop_instance
)
next
;
#endif
}
esp_event_loop_instance_t
;
Fields
Field
Declared as
Description
esp_event_loop_instance::name
const
char
*
name of this event loop.
esp_event_loop_instance::queue
QueueHandle_t
event queue.
esp_event_loop_instance::task
TaskHandle_t
task that consumes the event queue.
esp_event_loop_instance::running_task
TaskHandle_t
for loops with no dedicated task, the task that consumes the queue.
esp_event_loop_instance::mutex
SemaphoreHandle_t
mutex for updating the events linked list.
esp_event_loop_instance::loop_nodes
esp_event_loop_nodes_t
set of linked lists containing the registered handlers for the loop.
Examples
References
from
examples
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
All items filtered out
All items filtered out
Class Tree
from
examples
All items filtered out
All items filtered out
Override Tree
from
examples
All items filtered out
All items filtered out
Implementations
from
examples
All items filtered out
All items filtered out
Instances
from
examples
Lifecycle
from
examples
All items filtered out
All items filtered out