ESP-IDF
sdio_slave_context_t::send_desc_queue
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading...
Files
loading (3/5)...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
sdio_slave_context_t::send_desc_queue
sdio_slave_context_t::send_desc_queue field
The ring buffer used to hold queued descriptors. Should be manually initialized before using the HAL.
Syntax
Show:
Summary
Declaration
from
sdio_slave_hal.h:224
sdio_ringbuf_t
send_desc_queue
;
Examples
References
from
examples
Code
Location
Referrer
sdio_ringbuf_t
send_desc_queue
;
/**< The ring buffer used to hold queued descriptors. Should be manually
sdio_slave_hal.h:224
free
(
context
.
hal
->
send_desc_queue
.
data
)
;
sdio_slave.c:220
deinit_context()
context
.
hal
->
send_desc_queue
.
data
=
NULL
;
sdio_slave.c:221
deinit_context()
sdio_ringbuf_t
*
buf
=
&
(
context
.
hal
->
send_desc_queue
)
;
sdio_slave.c:244
init_context()
sdio_ringbuf_t
*
buf
=
&
(
hal
->
send_desc_queue
)
;
sdio_slave_hal.c:177
init_send_queue()
ret
=
sdio_ringbuf_recv
(
&
(
hal
->
send_desc_queue
)
,
&
start
,
&
end
,
RINGBUF_GET_ONE
)
;
sdio_slave_hal.c:335
send_check_new_packet()
ret
=
sdio_ringbuf_recv
(
&
(
hal
->
send_desc_queue
)
,
&
start
,
&
end
,
RINGBUF_GET_ALL
)
;
sdio_slave_hal.c:337
send_check_new_packet()
desc
=
(
sdio_slave_hal_send_desc_t
*
)
sdio_ringbuf_peek_front
(
&
(
hal
->
send_desc_queue
)
)
;
sdio_slave_hal.c:382
sdio_slave_hal_send_reset_counter()
*
out_returned_cnt
=
sdio_ringbuf_return
(
&
(
hal
->
send_desc_queue
)
,
(
uint8_t
*
)
hal
->
in_flight_head
)
;
sdio_slave_hal.c:412
send_get_inflight_desc()
ret
=
sdio_ringbuf_recv
(
&
(
hal
->
send_desc_queue
)
,
&
head
,
&
tail
,
RINGBUF_GET_ONE
)
;
sdio_slave_hal.c:428
send_get_unsent_desc()
(
*
out_return_cnt
)
=
sdio_ringbuf_return
(
&
(
hal
->
send_desc_queue
)
,
(
uint8_t
*
)
head
)
;
sdio_slave_hal.c:434
send_get_unsent_desc()
esp_err_t
ret
=
sdio_ringbuf_send
(
&
(
hal
->
send_desc_queue
)
,
send_write_desc
,
&
new_desc
)
;
sdio_slave_hal.c:542
sdio_slave_hal_send_queue()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
sdio_slave_context_t::send_desc_queue
is read by 8 functions:
All items filtered out
sdio_slave_context_t::send_desc_queue
deinit_context()
init_context()
init_send_queue()
send_check_new_packet()
sdio_slave_hal_send_reset_counter()
send_get_inflight_desc()
send_get_unsent_desc()
sdio_slave_hal_send_queue()
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