Fix for x86_64 build fail
[platform/upstream/connectedhomeip.git] / examples / pigweed-app / esp32 / main / Kconfig.projbuild
1 menu "PW RPC Example Configuration"
2
3     config EXAMPLE_UART_PORT_NUM
4         int "UART port number"
5         range 0 2 if IDF_TARGET_ESP32
6         default 0 if IDF_TARGET_ESP32
7         help
8             UART communication port number for the example.
9             See UART documentation for available port numbers.
10
11     config EXAMPLE_UART_BAUD_RATE
12         int "UART communication speed"
13         range 1200 115200
14         default 115200
15         help
16             UART communication speed for Modbus example.
17
18     config EXAMPLE_UART_RXD
19         int "UART RXD pin number"
20         range 0 34 if IDF_TARGET_ESP32
21         default 3
22         help
23             GPIO number for UART RX pin. See UART documentation for more information
24             about available pin numbers for UART.
25
26     config EXAMPLE_UART_TXD
27         int "UART TXD pin number"
28         range 0 34 if IDF_TARGET_ESP32
29         default 1
30         help
31             GPIO number for UART TX pin. See UART documentation for more information
32             about available pin numbers for UART.
33
34
35 endmenu