ESP-IDF
esp_event_post_instance
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading...
Files
loading (1/5)...
Summary
Syntax
Related
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
esp_event_post_instance
esp_event_post_instance struct
Event posted to the event queue
Syntax
Show:
Summary
Declaration
from
esp_event_internal.h:100
typedef
struct
esp_event_post_instance
{
#if
CONFIG_ESP_EVENT_POST_FROM_ISR
bool
data_allocated
;
bool
data_set
;
#endif
esp_event_base_t
base
;
int32_t
id
;
esp_event_post_data_t
data
;
}
esp_event_post_instance_t
;
Fields
Field
Declared as
Description
esp_event_post_instance::data_allocated
bool
indicates whether data is allocated from heap.
esp_event_post_instance::data_set
bool
indicates if data is null.
esp_event_post_instance::base
esp_event_base_t
the event base.
esp_event_post_instance::id
int32_t
the event id.
esp_event_post_instance::data
esp_event_post_data_t
data associated with the event.
Related Functions
Found 2 other functions taking a
esp_event_post_instance
argument:
Function
post_instance_delete()
handler_execute()
Examples
References
from
examples
Code
Location
Scope
Referrer
typedef
struct
esp_event_post_instance
{
esp_event_internal.h:100
}
esp_event_post_instance_t
;
esp_event_internal.h:108
static
void
handler_execute
(
esp_event_loop_instance_t
*
loop
,
esp_event_handler_node_t
*
handler
,
esp_event_post_instance_t
post
)
esp_event.c:116
handler_execute()
handler_execute()::post
static
void
inline
__attribute__
(
(
always_inline
)
)
post_instance_delete
(
esp_event_post_instance_t
*
post
)
esp_event.c:429
post_instance_delete()
post_instance_delete()::post
loop
->
queue
=
xQueueCreate
(
event_loop_args
->
queue_size
,
sizeof
(
esp_event_post_instance_t
)
)
;
esp_event.c:561
esp_event_loop_create()
esp_event_post_instance_t
post
;
esp_event.c:634
esp_event_loop_run()
esp_event_post_instance_t
post
;
esp_event.c:768
esp_event_loop_delete()
esp_event_post_instance_t
post
;
esp_event.c:923
esp_event_post_to()
esp_event_post_instance_t
post
;
esp_event.c:998
esp_event_isr_post_to()
}
esp_event_post_instance_t
;
esp_event_internal.h:108
esp_event_post_instance_t
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
Instance
Scope
Location
Project
handler_execute()::post
handler_execute()
esp_event.c:116
post_instance_delete()::post
post_instance_delete()
esp_event.c:429
Lifecycle
from
examples
All items filtered out
All items filtered out