Select one of the symbols to view example projects that use it.
 
Outline
#define ESP_EVENT_H_
#include "esp_err.h"
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "freertos/queue.h"
#include "freertos/semphr.h"
#include "esp_event_base.h"
esp_event_loop_args_t
esp_event_loop_create(const esp_event_loop_args_t *, esp_event_loop_handle_t *);
esp_event_loop_delete(esp_event_loop_handle_t);
esp_event_loop_create_default();
esp_event_loop_delete_default();
esp_event_loop_run(esp_event_loop_handle_t, TickType_t);
esp_event_handler_register(esp_event_base_t, int32_t, esp_event_handler_t, void *);
esp_event_handler_register_with(esp_event_loop_handle_t, esp_event_base_t, int32_t, esp_event_handler_t, void *);
esp_event_handler_instance_register_with(esp_event_loop_handle_t, esp_event_base_t, int32_t, esp_event_handler_t, void *, esp_event_handler_instance_t *);
esp_event_handler_instance_register(esp_event_base_t, int32_t, esp_event_handler_t, void *, esp_event_handler_instance_t *);
esp_event_handler_unregister(esp_event_base_t, int32_t, esp_event_handler_t);
esp_event_handler_unregister_with(esp_event_loop_handle_t, esp_event_base_t, int32_t, esp_event_handler_t);
esp_event_handler_instance_unregister_with(esp_event_loop_handle_t, esp_event_base_t, int32_t, esp_event_handler_instance_t);
esp_event_handler_instance_unregister(esp_event_base_t, int32_t, esp_event_handler_instance_t);
esp_event_post(esp_event_base_t, int32_t, const void *, size_t, TickType_t);
esp_event_post_to(esp_event_loop_handle_t, esp_event_base_t, int32_t, const void *, size_t, TickType_t);
esp_event_isr_post(esp_event_base_t, int32_t, const void *, size_t, BaseType_t *);
esp_event_isr_post_to(esp_event_loop_handle_t, esp_event_base_t, int32_t, const void *, size_t, BaseType_t *);
esp_event_dump(FILE *);
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/esp_event/include/esp_event.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2018-2024 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #ifndef ESP_EVENT_H_ #define ESP_EVENT_H_ #include "esp_err.h" #include "freertos/FreeRTOS.h" #include "freertos/task.h" #include "freertos/queue.h" #include "freertos/semphr.h" #include "esp_event_base.h"6 includes #ifdef __cplusplus extern "C" { #endif /// Configuration for creating event loops typedef struct { int32_t queue_size; /**< size of the event loop queue */ const char *task_name; /**< name of the event loop task; if NULL, a dedicated task is not created for event loop*//* ... */ UBaseType_t task_priority; /**< priority of the event loop task, ignored if task name is NULL */ uint32_t task_stack_size; /**< stack size of the event loop task, ignored if task name is NULL */ BaseType_t task_core_id; /**< core to which the event loop task is pinned to, ignored if task name is NULL *//* ... */ }{ ... } esp_event_loop_args_t; /** * @brief Create a new event loop. * * @param[in] event_loop_args configuration structure for the event loop to create * @param[out] event_loop handle to the created event loop * * @return * - ESP_OK: Success * - ESP_ERR_INVALID_ARG: event_loop_args or event_loop was NULL * - ESP_ERR_NO_MEM: Cannot allocate memory for event loops list * - ESP_FAIL: Failed to create task loop * - Others: Fail *//* ... */ esp_err_t esp_event_loop_create(const esp_event_loop_args_t *event_loop_args, esp_event_loop_handle_t *event_loop); /** * @brief Delete an existing event loop. * * @param[in] event_loop event loop to delete, must not be NULL * * @return * - ESP_OK: Success * - Others: Fail *//* ... */ esp_err_t esp_event_loop_delete(esp_event_loop_handle_t event_loop); /** * @brief Create default event loop * * @return * - ESP_OK: Success * - ESP_ERR_NO_MEM: Cannot allocate memory for event loops list * - ESP_ERR_INVALID_STATE: Default event loop has already been created * - ESP_FAIL: Failed to create task loop * - Others: Fail *//* ... */ esp_err_t esp_event_loop_create_default(void); /** * @brief Delete the default event loop * * @return * - ESP_OK: Success * - Others: Fail *//* ... */ esp_err_t esp_event_loop_delete_default(void); /** * @brief Dispatch events posted to an event loop. * * This function is used to dispatch events posted to a loop with no dedicated task, i.e. task name was set to NULL * in event_loop_args argument during loop creation. This function includes an argument to limit the amount of time * it runs, returning control to the caller when that time expires (or some time afterwards). There is no guarantee * that a call to this function will exit at exactly the time of expiry. There is also no guarantee that events have * been dispatched during the call, as the function might have spent all the allotted time waiting on the event queue. * Once an event has been dequeued, however, it is guaranteed to be dispatched. This guarantee contributes to not being * able to exit exactly at time of expiry as (1) blocking on internal mutexes is necessary for dispatching the dequeued * event, and (2) during dispatch of the dequeued event there is no way to control the time occupied by handler code * execution. The guaranteed time of exit is therefore the allotted time + amount of time required to dispatch * the last dequeued event. * * In cases where waiting on the queue times out, ESP_OK is returned and not ESP_ERR_TIMEOUT, since it is * normal behavior. * * @param[in] event_loop event loop to dispatch posted events from, must not be NULL * @param[in] ticks_to_run number of ticks to run the loop * * @note encountering an unknown event that has been posted to the loop will only generate a warning, not an error. * * @return * - ESP_OK: Success * - Others: Fail *//* ... */ esp_err_t esp_event_loop_run(esp_event_loop_handle_t event_loop, TickType_t ticks_to_run); /** * @brief Register an event handler to the system event loop (legacy). * * This function can be used to register a handler for either: (1) specific events, * (2) all events of a certain event base, or (3) all events known by the system event loop. * * - specific events: specify exact event_base and event_id * - all events of a certain base: specify exact event_base and use ESP_EVENT_ANY_ID as the event_id * - all events known by the loop: use ESP_EVENT_ANY_BASE for event_base and ESP_EVENT_ANY_ID as the event_id * * Registering multiple handlers to events is possible. Registering a single handler to multiple events is * also possible. However, registering the same handler to the same event multiple times would cause the * previous registrations to be overwritten. * * @param[in] event_base the base ID of the event to register the handler for * @param[in] event_id the ID of the event to register the handler for * @param[in] event_handler the handler function which gets called when the event is dispatched * @param[in] event_handler_arg data, aside from event data, that is passed to the handler when it is called * * @note the event loop library does not maintain a copy of event_handler_arg, therefore the user should * ensure that event_handler_arg still points to a valid location by the time the handler gets called * * @return * - ESP_OK: Success * - ESP_ERR_NO_MEM: Cannot allocate memory for the handler * - ESP_ERR_INVALID_ARG: Invalid combination of event base and event ID * - Others: Fail *//* ... */ esp_err_t esp_event_handler_register(esp_event_base_t event_base, int32_t event_id, esp_event_handler_t event_handler, void *event_handler_arg); /** * @brief Register an event handler to a specific loop (legacy). * * This function behaves in the same manner as esp_event_handler_register, except the additional * specification of the event loop to register the handler to. * * @param[in] event_loop the event loop to register this handler function to, must not be NULL * @param[in] event_base the base ID of the event to register the handler for * @param[in] event_id the ID of the event to register the handler for * @param[in] event_handler the handler function which gets called when the event is dispatched * @param[in] event_handler_arg data, aside from event data, that is passed to the handler when it is called * * @note the event loop library does not maintain a copy of event_handler_arg, therefore the user should * ensure that event_handler_arg still points to a valid location by the time the handler gets called * * @return * - ESP_OK: Success * - ESP_ERR_NO_MEM: Cannot allocate memory for the handler * - ESP_ERR_INVALID_ARG: Invalid combination of event base and event ID * - Others: Fail *//* ... */ esp_err_t esp_event_handler_register_with(esp_event_loop_handle_t event_loop, esp_event_base_t event_base, int32_t event_id, esp_event_handler_t event_handler, void *event_handler_arg); /** * @brief Register an instance of event handler to a specific loop. * * This function can be used to register a handler for either: (1) specific events, * (2) all events of a certain event base, or (3) all events known by the system event loop. * * - specific events: specify exact event_base and event_id * - all events of a certain base: specify exact event_base and use ESP_EVENT_ANY_ID as the event_id * - all events known by the loop: use ESP_EVENT_ANY_BASE for event_base and ESP_EVENT_ANY_ID as the event_id * * Besides the error, the function returns an instance object as output parameter to identify each registration. * This is necessary to remove (unregister) the registration before the event loop is deleted. * * Registering multiple handlers to events, registering a single handler to multiple events as well as registering * the same handler to the same event multiple times is possible. * Each registration yields a distinct instance object which identifies it over the registration * lifetime. * * @param[in] event_loop the event loop to register this handler function to, must not be NULL * @param[in] event_base the base ID of the event to register the handler for * @param[in] event_id the ID of the event to register the handler for * @param[in] event_handler the handler function which gets called when the event is dispatched * @param[in] event_handler_arg data, aside from event data, that is passed to the handler when it is called * @param[out] instance An event handler instance object related to the registered event handler and data, can be NULL. * This needs to be kept if the specific callback instance should be unregistered before deleting the whole * event loop. Registering the same event handler multiple times is possible and yields distinct instance * objects. The data can be the same for all registrations. * If no unregistration is needed, but the handler should be deleted when the event loop is deleted, * instance can be NULL. * * @note the event loop library does not maintain a copy of event_handler_arg, therefore the user should * ensure that event_handler_arg still points to a valid location by the time the handler gets called * * @note Calling this function with instance set to NULL is equivalent to calling esp_event_handler_register_with. * * @return * - ESP_OK: Success * - ESP_ERR_NO_MEM: Cannot allocate memory for the handler * - ESP_ERR_INVALID_ARG: Invalid combination of event base and event ID or instance is NULL * - Others: Fail *//* ... */ esp_err_t esp_event_handler_instance_register_with(esp_event_loop_handle_t event_loop, esp_event_base_t event_base, int32_t event_id, esp_event_handler_t event_handler, void *event_handler_arg, esp_event_handler_instance_t *instance); /** * @brief Register an instance of event handler to the default loop. * * This function does the same as esp_event_handler_instance_register_with, except that it registers the * handler to the default event loop. * * @param[in] event_base the base ID of the event to register the handler for * @param[in] event_id the ID of the event to register the handler for * @param[in] event_handler the handler function which gets called when the event is dispatched * @param[in] event_handler_arg data, aside from event data, that is passed to the handler when it is called * @param[out] instance An event handler instance object related to the registered event handler and data, can be NULL. * This needs to be kept if the specific callback instance should be unregistered before deleting the whole * event loop. Registering the same event handler multiple times is possible and yields distinct instance * objects. The data can be the same for all registrations. * If no unregistration is needed, but the handler should be deleted when the event loop is deleted, * instance can be NULL. * * @note the event loop library does not maintain a copy of event_handler_arg, therefore the user should * ensure that event_handler_arg still points to a valid location by the time the handler gets called * * @note Calling this function with instance set to NULL is equivalent to calling esp_event_handler_register. * * @return * - ESP_OK: Success * - ESP_ERR_NO_MEM: Cannot allocate memory for the handler * - ESP_ERR_INVALID_ARG: Invalid combination of event base and event ID or instance is NULL * - Others: Fail *//* ... */ esp_err_t esp_event_handler_instance_register(esp_event_base_t event_base, int32_t event_id, esp_event_handler_t event_handler, void *event_handler_arg, esp_event_handler_instance_t *instance); /** * @brief Unregister a handler with the system event loop (legacy). * * Unregisters a handler, so it will no longer be called during dispatch. * Handlers can be unregistered for any combination of event_base and event_id which were previously registered. * To unregister a handler, the event_base and event_id arguments must match exactly the arguments passed to * esp_event_handler_register() when that handler was registered. Passing ESP_EVENT_ANY_BASE and/or ESP_EVENT_ANY_ID * will only unregister handlers that were registered with the same wildcard arguments. * * @note When using ESP_EVENT_ANY_ID, handlers registered to specific event IDs using the same base will not be * unregistered. When using ESP_EVENT_ANY_BASE, events registered to specific bases will also not be * unregistered. This avoids accidental unregistration of handlers registered by other users or components. * * @param[in] event_base the base of the event with which to unregister the handler * @param[in] event_id the ID of the event with which to unregister the handler * @param[in] event_handler the handler to unregister * * @return ESP_OK success * @return ESP_ERR_INVALID_ARG invalid combination of event base and event ID * @return others fail *//* ... */ esp_err_t esp_event_handler_unregister(esp_event_base_t event_base, int32_t event_id, esp_event_handler_t event_handler); /** * @brief Unregister a handler from a specific event loop (legacy). * * This function behaves in the same manner as esp_event_handler_unregister, except the additional specification of * the event loop to unregister the handler with. * * @param[in] event_loop the event loop with which to unregister this handler function, must not be NULL * @param[in] event_base the base of the event with which to unregister the handler * @param[in] event_id the ID of the event with which to unregister the handler * @param[in] event_handler the handler to unregister * * @return * - ESP_OK: Success * - ESP_ERR_INVALID_ARG: Invalid combination of event base and event ID * - Others: Fail *//* ... */ esp_err_t esp_event_handler_unregister_with(esp_event_loop_handle_t event_loop, esp_event_base_t event_base, int32_t event_id, esp_event_handler_t event_handler); /** * @brief Unregister a handler instance from a specific event loop. * * Unregisters a handler instance, so it will no longer be called during dispatch. * Handler instances can be unregistered for any combination of event_base and event_id which were previously * registered. To unregister a handler instance, the event_base and event_id arguments must match exactly the * arguments passed to esp_event_handler_instance_register() when that handler instance was registered. * Passing ESP_EVENT_ANY_BASE and/or ESP_EVENT_ANY_ID will only unregister handler instances that were registered * with the same wildcard arguments. * * @note When using ESP_EVENT_ANY_ID, handlers registered to specific event IDs using the same base will not be * unregistered. When using ESP_EVENT_ANY_BASE, events registered to specific bases will also not be * unregistered. This avoids accidental unregistration of handlers registered by other users or components. * * @param[in] event_loop the event loop with which to unregister this handler function, must not be NULL * @param[in] event_base the base of the event with which to unregister the handler * @param[in] event_id the ID of the event with which to unregister the handler * @param[in] instance the instance object of the registration to be unregistered * * @return * - ESP_OK: Success * - ESP_ERR_INVALID_ARG: Invalid combination of event base and event ID * - Others: Fail *//* ... */ esp_err_t esp_event_handler_instance_unregister_with(esp_event_loop_handle_t event_loop, esp_event_base_t event_base, int32_t event_id, esp_event_handler_instance_t instance); /** * @brief Unregister a handler from the system event loop. * * This function does the same as esp_event_handler_instance_unregister_with, except that it unregisters the * handler instance from the default event loop. * * @param[in] event_base the base of the event with which to unregister the handler * @param[in] event_id the ID of the event with which to unregister the handler * @param[in] instance the instance object of the registration to be unregistered * * @return * - ESP_OK: Success * - ESP_ERR_INVALID_ARG: Invalid combination of event base and event ID * - Others: Fail *//* ... */ esp_err_t esp_event_handler_instance_unregister(esp_event_base_t event_base, int32_t event_id, esp_event_handler_instance_t instance); /** * @brief Posts an event to the system default 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. * * @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 occurrence, 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: 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 *//* ... */ esp_err_t esp_event_post(esp_event_base_t event_base, int32_t event_id, const void *event_data, size_t event_data_size, TickType_t ticks_to_wait); /** * @brief 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. * * @param[in] event_loop the event loop to post to, must not be NULL * @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 occurrence, 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: 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 *//* ... */ esp_err_t esp_event_post_to(esp_event_loop_handle_t event_loop, esp_event_base_t event_base, int32_t event_id, const void *event_data, size_t event_data_size, TickType_t ticks_to_wait); #if CONFIG_ESP_EVENT_POST_FROM_ISR /** * @brief Special variant of esp_event_post for posting events from interrupt handlers. * * @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 occurrence, that gets passed to the handler * @param[in] event_data_size the size of the event data; max is 4 bytes * @param[out] task_unblocked an optional parameter (can be NULL) which indicates that an event task with * higher priority than currently running task has been unblocked by the posted event; * a context switch should be requested before the interrupt is existed. * * @note this function is only available when CONFIG_ESP_EVENT_POST_FROM_ISR is enabled * @note when this function is called from an interrupt handler placed in IRAM, this function should * be placed in IRAM as well by enabling CONFIG_ESP_EVENT_POST_FROM_IRAM_ISR * * @return * - ESP_OK: Success * - ESP_FAIL: Event queue for the default event loop full * - ESP_ERR_INVALID_ARG: Invalid combination of event base and event ID, * data size of more than 4 bytes * - Others: Fail *//* ... */ esp_err_t esp_event_isr_post(esp_event_base_t event_base, int32_t event_id, const void *event_data, size_t event_data_size, BaseType_t *task_unblocked); /** * @brief Special variant of esp_event_post_to for posting events from interrupt handlers * * @param[in] event_loop the event loop to post to, must not be NULL * @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 occurrence, that gets passed to the handler * @param[in] event_data_size the size of the event data * @param[out] task_unblocked an optional parameter (can be NULL) which indicates that an event task with * higher priority than currently running task has been unblocked by the posted event; * a context switch should be requested before the interrupt is existed. * * @note this function is only available when CONFIG_ESP_EVENT_POST_FROM_ISR is enabled * @note when this function is called from an interrupt handler placed in IRAM, this function should * be placed in IRAM as well by enabling CONFIG_ESP_EVENT_POST_FROM_IRAM_ISR * * @return * - ESP_OK: Success * - ESP_FAIL: Event queue for the loop full * - ESP_ERR_INVALID_ARG: Invalid combination of event base and event ID, * data size of more than 4 bytes * - Others: Fail *//* ... */ esp_err_t esp_event_isr_post_to(esp_event_loop_handle_t event_loop, esp_event_base_t event_base, int32_t event_id, const void *event_data, size_t event_data_size, BaseType_t *task_unblocked);/* ... */ #endif /** * @brief Dumps statistics of all event loops. * * Dumps event loop info in the format: * @verbatim event loop handler handler ... event loop handler handler ... where: event loop format: address,name rx:total_received dr:total_dropped where: address - memory address of the event loop name - name of the event loop, 'none' if no dedicated task total_received - number of successfully posted events total_dropped - number of events unsuccessfully posted due to queue being full handler format: address ev:base,id inv:total_invoked run:total_runtime where: address - address of the handler function base,id - the event specified by event base and ID this handler executes total_invoked - number of times this handler has been invoked total_runtime - total amount of time used for invoking this handler @endverbatim * * @param[in] file the file stream to output to * * @note this function is a noop when CONFIG_ESP_EVENT_LOOP_PROFILING is disabled * * @return * - ESP_OK: Success * - ESP_ERR_NO_MEM: Cannot allocate memory for event loops list * - Others: Fail *//* ... */ esp_err_t esp_event_dump(FILE *file); #ifdef __cplusplus }{...} // extern "C" #endif /* ... */ #endif // #ifndef ESP_EVENT_H_
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.