ESP-IDF
uart_dev_s::conf1
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
uart_dev_s::conf1
uart_dev_s::conf1 field
Syntax
Show:
Summary
Declaration
from
uart_struct.h:189
union
{
struct
{
uint32_t
rxfifo_full_thrhd
:
7
;
uint32_t
reserved7
:
1
;
uint32_t
txfifo_empty_thrhd
:
7
;
uint32_t
reserved15
:
1
;
uint32_t
rx_flow_thrhd
:
7
;
uint32_t
rx_flow_en
:
1
;
uint32_t
rx_tout_thrhd
:
7
;
uint32_t
rx_tout_en
:
1
;
}
;
uint32_t
val
;
}
conf1
;
Examples
References
from
examples
Code
Location
Referrer
}
conf1
;
uart_struct.h:201
hw
->
conf1
.
rxfifo_full_thrhd
=
full_thrhd
;
uart_ll.h:513
uart_ll_set_rxfifo_full_thr()
hw
->
conf1
.
txfifo_empty_thrhd
=
empty_thrhd
;
uart_ll.h:527
uart_ll_set_txfifo_empty_thr()
hw
->
conf1
.
rx_flow_thrhd
=
rx_thrs
;
uart_ll.h:588
uart_ll_set_hw_flow_ctrl()
hw
->
conf1
.
rx_flow_en
=
1
;
uart_ll.h:589
uart_ll_set_hw_flow_ctrl()
hw
->
conf1
.
rx_flow_en
=
0
;
uart_ll.h:591
uart_ll_set_hw_flow_ctrl()
if
(
hw
->
conf1
.
rx_flow_en
)
{
uart_ll.h:611
uart_ll_get_hw_flow_ctrl()
return
hw
->
conf1
.
rx_flow_en
;
uart_ll.h:911
uart_ll_is_hw_rts_en()
hw
->
conf1
.
rx_tout_thrhd
=
tout_thr
;
uart_ll.h:982
uart_ll_set_rx_tout()
hw
->
conf1
.
rx_tout_en
=
1
;
uart_ll.h:983
uart_ll_set_rx_tout()
hw
->
conf1
.
rx_tout_en
=
0
;
uart_ll.h:985
uart_ll_set_rx_tout()
if
(
hw
->
conf1
.
rx_tout_en
>
0
)
{
uart_ll.h:999
uart_ll_get_rx_tout_thr()
tout_thrd
=
(
uint16_t
)
(
hw
->
conf1
.
rx_tout_thrhd
/
UART_LL_TOUT_REF_FACTOR_DEFAULT
)
;
uart_ll.h:1001
uart_ll_get_rx_tout_thr()
tout_thrd
=
(
uint16_t
)
(
hw
->
conf1
.
rx_tout_thrhd
<
<
3
)
;
uart_ll.h:1003
uart_ll_get_rx_tout_thr()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
uart_dev_s::conf1
is read by 7 functions:
All items filtered out
uart_dev_s::conf1
uart_ll_set_rxfifo_full_thr()
uart_ll_set_txfifo_empty_thr()
uart_ll_set_hw_flow_ctrl()
uart_ll_get_hw_flow_ctrl()
uart_ll_is_hw_rts_en()
uart_ll_set_rx_tout()
uart_ll_get_rx_tout_thr()
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