Select one of the symbols to view example projects that use it.
 
Outline
#include "soc/uart_periph.h"
uart_periph_signal
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/soc/esp32/uart_periph.c
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2015-2024 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #include "soc/uart_periph.h" /* Bunch of constants for every UART peripheral: GPIO signals, irqs, hw addr of registers etc *//* ... */ const uart_signal_conn_t uart_periph_signal[SOC_UART_NUM] = { { .pins = { [SOC_UART_TX_PIN_IDX] = { .default_gpio = U0TXD_GPIO_NUM, .iomux_func = U0TXD_MUX_FUNC, .input = 0, .signal = U0TXD_OUT_IDX, }{...}, [SOC_UART_RX_PIN_IDX] = { .default_gpio = U0RXD_GPIO_NUM, .iomux_func = U0RXD_MUX_FUNC, .input = 1, .signal = U0RXD_IN_IDX, }{...}, [SOC_UART_RTS_PIN_IDX] = { .default_gpio = U0RTS_GPIO_NUM, .iomux_func = U0RTS_MUX_FUNC, .input = 0, .signal = U0RTS_OUT_IDX, }{...}, [SOC_UART_CTS_PIN_IDX] = { .default_gpio = U0CTS_GPIO_NUM, .iomux_func = U0CTS_MUX_FUNC, .input = 1, .signal = U0CTS_IN_IDX, }{...} }{...}, .irq = ETS_UART0_INTR_SOURCE, }{...}, { .pins = { [SOC_UART_TX_PIN_IDX] = { .default_gpio = U1TXD_GPIO_NUM, .iomux_func = U1TXD_MUX_FUNC, .input = 0, .signal = U1TXD_OUT_IDX, }{...}, [SOC_UART_RX_PIN_IDX] = { .default_gpio = U1RXD_GPIO_NUM, .iomux_func = U1RXD_MUX_FUNC, .input = 1, .signal = U1RXD_IN_IDX, }{...}, [SOC_UART_RTS_PIN_IDX] = { .default_gpio = U1RTS_GPIO_NUM, .iomux_func = U1RTS_MUX_FUNC, .input = 0, .signal = U1RTS_OUT_IDX, }{...}, [SOC_UART_CTS_PIN_IDX] = { .default_gpio = U1CTS_GPIO_NUM, .iomux_func = U1CTS_MUX_FUNC, .input = 1, .signal = U1CTS_IN_IDX, }{...}, }{...}, .irq = ETS_UART1_INTR_SOURCE, }{...}, { .pins = { [SOC_UART_TX_PIN_IDX] = { .default_gpio = U2TXD_GPIO_NUM, .iomux_func = U2TXD_MUX_FUNC, .input = 0, .signal = U2TXD_OUT_IDX, }{...}, [SOC_UART_RX_PIN_IDX] = { .default_gpio = U2RXD_GPIO_NUM, .iomux_func = U2RXD_MUX_FUNC, .input = 1, .signal = U2RXD_IN_IDX, }{...}, [SOC_UART_RTS_PIN_IDX] = { .default_gpio = U2RTS_GPIO_NUM, .iomux_func = U2RTS_MUX_FUNC, .input = 0, .signal = U2RTS_OUT_IDX, }{...}, [SOC_UART_CTS_PIN_IDX] = { .default_gpio = U2CTS_GPIO_NUM, .iomux_func = U2CTS_MUX_FUNC, .input = 1, .signal = U2CTS_IN_IDX, }{...} }{...}, .irq = ETS_UART2_INTR_SOURCE, }{...} }{...};
Details