mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
17 lines
375 B
Plaintext
17 lines
375 B
Plaintext
|
menu "Example Configuration"
|
||
|
|
||
|
config EXAMPLE_IPV4_ADDR
|
||
|
string "IPV4 Address"
|
||
|
default "192.168.0.165"
|
||
|
help
|
||
|
The example will connect to this IPV4 address.
|
||
|
|
||
|
config EXAMPLE_PORT
|
||
|
int "Port"
|
||
|
range 0 65535
|
||
|
default 3333
|
||
|
help
|
||
|
The remote port to which the client example will connect to.
|
||
|
|
||
|
endmenu
|