ESP-IDF
uart_tx_data_t
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_tx_data_t
uart_tx_data_t struct
Syntax
Show:
Summary
Declaration
from
uart.c:114
typedef
struct
{
uart_event_type_t
type
;
struct
{
int
brk_len
;
size_t
size
;
uint8_t
data
[
0
]
;
}
tx_data
;
}
uart_tx_data_t
;
Fields
Field
Declared as
Description
uart_tx_data_t::type
uart_event_type_t
UART TX data type.
uart_tx_data_t::tx_data
struct
{
int
brk_len
;
size_t
size
;
uint8_t
data
[
0
]
;
}
Examples
References
from
examples
Code
Location
Scope
Referrer
typedef
struct
{
uart.c:114
}
uart_tx_data_t
;
uart.c:121
uart_tx_data_t
uart_tx_data_t
*
tx_head
;
/*!< TX data pointer to head of the current buffer in TX ring buffer*/
uart.c:147
uart_obj_t
uart_obj_t::tx_head
p_uart
->
tx_head
=
(
uart_tx_data_t
*
)
xRingbufferReceiveFromISR
(
p_uart
->
tx_ring_buf
,
&
size
)
;
uart.c:1052
uart_rx_intr_handler_default()
uart_tx_data_t
evt
;
uart.c:1436
uart_tx_all()
xRingbufferSend
(
p_uart_obj
[
uart_num
]
->
tx_ring_buf
,
(
void
*
)
&
evt
,
sizeof
(
uart_tx_data_t
)
,
portMAX_DELAY
)
;
uart.c:1444
uart_tx_all()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
All items filtered out
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
Instance
Scope
Location
Project
uart_obj_t::tx_head
uart_obj_t
uart.c:147
Lifecycle
from
examples
All items filtered out
All items filtered out