ESP-IDF
uart_obj_t::tx_mux
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading (3/5)...
Files
loading (4/5)...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
uart_obj_t::tx_mux
uart_obj_t::tx_mux field
UART TX mutex
Syntax
Show:
Summary
Declaration
from
uart.c:158
SemaphoreHandle_t
tx_mux
;
Examples
References
from
examples
Code
Location
Referrer
SemaphoreHandle_t
tx_mux
;
/*!< UART TX mutex*/
uart.c:158
res
=
xSemaphoreTake
(
p_uart_obj
[
uart_num
]
->
tx_mux
,
(
TickType_t
)
ticks_to_wait
)
;
uart.c:1349
uart_wait_tx_done()
xSemaphoreGive
(
p_uart_obj
[
uart_num
]
->
tx_mux
)
;
uart.c:1377
uart_wait_tx_done()
xSemaphoreGive
(
p_uart_obj
[
uart_num
]
->
tx_mux
)
;
uart.c:1401
uart_wait_tx_done()
xSemaphoreTake
(
p_uart_obj
[
uart_num
]
->
tx_mux
,
(
TickType_t
)
portMAX_DELAY
)
;
uart.c:1414
uart_tx_chars()
xSemaphoreGive
(
p_uart_obj
[
uart_num
]
->
tx_mux
)
;
uart.c:1416
uart_tx_chars()
xSemaphoreTake
(
p_uart_obj
[
uart_num
]
->
tx_mux
,
(
TickType_t
)
portMAX_DELAY
)
;
uart.c:1428
uart_tx_all()
xSemaphoreGive
(
p_uart_obj
[
uart_num
]
->
tx_mux
)
;
uart.c:1478
uart_tx_all()
if
(
uart_obj
->
tx_mux
)
{
uart.c:1645
uart_free_driver_obj()
vSemaphoreDeleteWithCaps
(
uart_obj
->
tx_mux
)
;
uart.c:1646
uart_free_driver_obj()
uart_obj
->
tx_mux
=
xSemaphoreCreateMutexWithCaps
(
UART_MALLOC_CAPS
)
;
uart.c:1693
uart_alloc_driver_obj()
if
(
!
uart_obj
->
rx_ring_buf
||
!
uart_obj
->
rx_mux
||
!
uart_obj
->
tx_mux
||
!
uart_obj
->
tx_brk_sem
||
uart.c:1698
uart_alloc_driver_obj()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
uart_obj_t::tx_mux
is written by 1 function and is read by 5 functions:
uart_alloc_driver_obj()
All items filtered out
uart_obj_t::tx_mux
uart_wait_tx_done()
uart_tx_chars()
uart_tx_all()
uart_free_driver_obj()
uart_alloc_driver_obj()
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