controller_hci_uart_esp32c3_and_esp32s3 sample
uart_env
is only used within controller_hci_uart_esp32c3_and_esp32s3 sample.
Symbol previews are coming soon...
Symbols
loading...
Files
loading (1/4)...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
controller_hci_uart_esp32c3_and_esp32s3 sample
uart_env
uart_env variable
Syntax
Show:
Summary
Declaration
from
main.c:52
struct
uart_env_tag
uart_env
;
Examples
References
from
examples
Code
Location
Referrer
struct
uart_env_tag
uart_env
;
main.c:52
uart_env
.
rx
.
callback
=
callback
;
main.c:85
hci_uart_tl_recv_async()
uart_env
.
rx
.
arg
=
arg
;
main.c:86
hci_uart_tl_recv_async()
memset
(
&
uart_env
.
rx
.
link
,
0
,
sizeof
(
lldesc_t
)
)
;
main.c:88
hci_uart_tl_recv_async()
uart_env
.
rx
.
link
.
buf
=
buf
;
main.c:89
hci_uart_tl_recv_async()
uart_env
.
rx
.
link
.
size
=
size
;
main.c:90
hci_uart_tl_recv_async()
gdma_start
(
s_rx_channel
,
(
intptr_t
)
(
&
uart_env
.
rx
.
link
)
)
;
main.c:94
hci_uart_tl_recv_async()
uart_env
.
tx
.
callback
=
callback
;
main.c:103
hci_uart_tl_send_async()
uart_env
.
tx
.
arg
=
arg
;
main.c:104
hci_uart_tl_send_async()
memset
(
&
uart_env
.
tx
.
link
,
0
,
sizeof
(
lldesc_t
)
)
;
main.c:106
hci_uart_tl_send_async()
uart_env
.
tx
.
link
.
length
=
size
;
main.c:107
hci_uart_tl_send_async()
uart_env
.
tx
.
link
.
buf
=
buf
;
main.c:108
hci_uart_tl_send_async()
uart_env
.
tx
.
link
.
eof
=
1
;
main.c:109
hci_uart_tl_send_async()
gdma_start
(
s_tx_channel
,
(
intptr_t
)
(
&
uart_env
.
tx
.
link
)
)
;
main.c:111
hci_uart_tl_send_async()
assert
(
uart_env
.
rx
.
callback
!=
NULL
)
;
main.c:130
hci_uart_tl_rx_eof_callback()
esp_bt_hci_tl_callback_t
callback
=
uart_env
.
rx
.
callback
;
main.c:131
hci_uart_tl_rx_eof_callback()
void
*
arg
=
uart_env
.
rx
.
arg
;
main.c:132
hci_uart_tl_rx_eof_callback()
uart_env
.
rx
.
callback
=
NULL
;
main.c:135
hci_uart_tl_rx_eof_callback()
uart_env
.
rx
.
arg
=
NULL
;
main.c:136
hci_uart_tl_rx_eof_callback()
assert
(
uart_env
.
tx
.
callback
!=
NULL
)
;
main.c:150
hci_uart_tl_tx_eof_callback()
esp_bt_hci_tl_callback_t
callback
=
uart_env
.
tx
.
callback
;
main.c:151
hci_uart_tl_tx_eof_callback()
void
*
arg
=
uart_env
.
tx
.
arg
;
main.c:152
hci_uart_tl_tx_eof_callback()
uart_env
.
tx
.
callback
=
NULL
;
main.c:155
hci_uart_tl_tx_eof_callback()
uart_env
.
tx
.
arg
=
NULL
;
main.c:156
hci_uart_tl_tx_eof_callback()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
uart_env
is read by 4 functions:
All items filtered out
uart_env
hci_uart_tl_recv_async()
hci_uart_tl_send_async()
hci_uart_tl_rx_eof_callback()
hci_uart_tl_tx_eof_callback()
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