ESP-IDF
host_ctx_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
host_ctx_t::event_queue
host_ctx_t::event_queue field
Syntax
Show:
Summary
Declaration
from
sdmmc_host.c:87
QueueHandle_t
event_queue
;
Examples
References
from
examples
Code
Location
Referrer
QueueHandle_t
event_queue
;
sdmmc_host.c:87
s_host_ctx
.
event_queue
=
xQueueCreate
(
SDMMC_EVENT_QUEUE_LENGTH
,
sizeof
(
sdmmc_event_t
)
)
;
sdmmc_host.c:513
sdmmc_host_init()
if
(
!
s_host_ctx
.
event_queue
)
{
sdmmc_host.c:514
sdmmc_host_init()
vQueueDelete
(
s_host_ctx
.
event_queue
)
;
sdmmc_host.c:519
sdmmc_host_init()
s_host_ctx
.
event_queue
=
NULL
;
sdmmc_host.c:520
sdmmc_host_init()
esp_err_t
ret
=
esp_intr_alloc
(
ETS_SDIO_HOST_INTR_SOURCE
,
0
,
&
sdmmc_isr
,
s_host_ctx
.
event_queue
,
&
s_host_ctx
.
intr_handle
)
;
sdmmc_host.c:524
sdmmc_host_init()
vQueueDelete
(
s_host_ctx
.
event_queue
)
;
sdmmc_host.c:526
sdmmc_host_init()
s_host_ctx
.
event_queue
=
NULL
;
sdmmc_host.c:527
sdmmc_host_init()
vQueueDelete
(
s_host_ctx
.
event_queue
)
;
sdmmc_host.c:544
sdmmc_host_init()
s_host_ctx
.
event_queue
=
NULL
;
sdmmc_host.c:545
sdmmc_host_init()
vQueueDelete
(
s_host_ctx
.
event_queue
)
;
sdmmc_host.c:826
sdmmc_host_deinit_internal()
s_host_ctx
.
event_queue
=
NULL
;
sdmmc_host.c:827
sdmmc_host_deinit_internal()
if
(
!
s_host_ctx
.
event_queue
)
{
sdmmc_host.c:933
sdmmc_host_wait_for_event()
int
ret
=
xQueueReceive
(
s_host_ctx
.
event_queue
,
out_event
,
tick_count
)
;
sdmmc_host.c:936
sdmmc_host_wait_for_event()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
host_ctx_t::event_queue
is written by 2 functions and is read by 3 functions:
sdmmc_host_init()
sdmmc_host_deinit_internal()
All items filtered out
host_ctx_t::event_queue
sdmmc_host_init()
sdmmc_host_deinit_internal()
sdmmc_host_wait_for_event()
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