ESP-IDF
i2c_master_bus_t::event_queue
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
i2c_master_bus_t::event_queue
i2c_master_bus_t::event_queue field
Syntax
Show:
Summary
Declaration
from
i2c_private.h:147
QueueHandle_t
event_queue
;
Examples
References
from
examples
Code
Location
Referrer
QueueHandle_t
event_queue
;
// I2C event queue
i2c_private.h:147
xQueueReset
(
i2c_master
->
event_queue
)
;
i2c_master.c:464
s_i2c_send_commands()
if
(
xQueueReceive
(
i2c_master
->
event_queue
,
&
event
,
ticks_to_wait
)
==
pdTRUE
)
{
i2c_master.c:513
s_i2c_send_commands()
xQueueSendFromISR
(
i2c_master
->
event_queue
,
(
void
*
)
&
i2c_master
->
event
,
&
HPTaskAwoken
)
;
i2c_master.c:704
i2c_master_isr_handler_default()
if
(
i2c_master
->
event_queue
)
{
i2c_master.c:803
i2c_master_bus_destroy()
vQueueDeleteWithCaps
(
i2c_master
->
event_queue
)
;
i2c_master.c:804
i2c_master_bus_destroy()
i2c_master
->
event_queue
=
xQueueCreateWithCaps
(
1
,
sizeof
(
i2c_master_event_t
)
,
I2C_MEM_ALLOC_CAPS
)
;
i2c_master.c:995
i2c_new_master_bus()
ESP_GOTO_ON_FALSE
(
i2c_master
->
event_queue
,
ESP_ERR_NO_MEM
,
err
,
TAG
,
"no memory for i2c queue struct"
)
;
i2c_master.c:996
i2c_new_master_bus()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
i2c_master_bus_t::event_queue
is written by 1 function and is read by 4 functions:
i2c_new_master_bus()
All items filtered out
i2c_master_bus_t::event_queue
s_i2c_send_commands()
i2c_master_isr_handler_default()
i2c_master_bus_destroy()
i2c_new_master_bus()
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