ESP-IDF
gdb_uart
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
gdb_uart
gdb_uart variable
Syntax
Show:
Summary
Declaration
from
gdbstub_transport.c:51
static
uart_dev_t
*
gdb_uart
=
NULL
;
Examples
References
from
examples
Code
Location
Referrer
static
uart_dev_t
*
gdb_uart
=
NULL
;
gdbstub_transport.c:51
if
(
gdb_uart
!=
NULL
)
{
gdbstub_transport.c:55
esp_gdbstub_uart_init()
gdb_uart
=
&
UART0
;
gdbstub_transport.c:60
esp_gdbstub_uart_init()
gdb_uart
=
&
UART1
;
gdbstub_transport.c:64
esp_gdbstub_uart_init()
gdb_uart
=
&
UART2
;
gdbstub_transport.c:69
esp_gdbstub_uart_init()
gdb_uart
=
&
UART0
;
gdbstub_transport.c:73
esp_gdbstub_uart_init()
while
(
uart_ll_get_rxfifo_len
(
gdb_uart
)
==
0
)
{
gdbstub_transport.c:82
esp_gdbstub_getchar()
uart_ll_read_rxfifo
(
gdb_uart
,
&
data
,
1
)
;
gdbstub_transport.c:85
esp_gdbstub_getchar()
while
(
uart_ll_get_txfifo_len
(
gdb_uart
)
<=
126
)
{
gdbstub_transport.c:92
esp_gdbstub_putchar()
uart_ll_write_txfifo
(
gdb_uart
,
(
uint8_t
*
)
&
c
,
1
)
;
gdbstub_transport.c:95
esp_gdbstub_putchar()
while
(
false
==
uart_ll_is_tx_idle
(
gdb_uart
)
)
{
gdbstub_transport.c:102
esp_gdbstub_flush()
int
fifolen
=
uart_ll_get_rxfifo_len
(
gdb_uart
)
;
gdbstub_transport.c:113
esp_gdbstub_getfifo()
uart_ll_read_rxfifo
(
gdb_uart
,
&
data
,
1
)
;
gdbstub_transport.c:116
esp_gdbstub_getfifo()
uart_ll_clr_intsts_mask
(
gdb_uart
,
UART_INTR_RXFIFO_FULL
|
UART_INTR_RXFIFO_TOUT
)
;
gdbstub_transport.c:122
esp_gdbstub_getfifo()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
gdb_uart
is written by 1 function and is read by 5 functions:
esp_gdbstub_uart_init()
All items filtered out
gdb_uart
esp_gdbstub_uart_init()
esp_gdbstub_getchar()
esp_gdbstub_putchar()
esp_gdbstub_flush()
esp_gdbstub_getfifo()
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