mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
32 lines
880 B
Plaintext
32 lines
880 B
Plaintext
menu "Openthread"
|
|
|
|
menuconfig OPENTHREAD_CUSTOM_COMMAND
|
|
bool "Enable custom command in ot-cli"
|
|
default n
|
|
|
|
config OPENTHREAD_ENABLE_TCP_SOCKET_EXAMPLE
|
|
bool "Enable openthread tcp socket"
|
|
depends on OPENTHREAD_CUSTOM_COMMAND
|
|
default n
|
|
|
|
config OPENTHEAD_EXAMPLE_TCP_SERVER_PORT
|
|
int "the port of TCP server"
|
|
default 12345
|
|
depends on OPENTHREAD_ENABLE_TCP_SOCKET_EXAMPLE
|
|
help
|
|
Set the connect port of socket
|
|
|
|
config OPENTHREAD_ENABLE_UDP_SOCKET_EXAMPLE
|
|
bool "Enable openthread udp socket"
|
|
depends on OPENTHREAD_CUSTOM_COMMAND
|
|
default n
|
|
|
|
config OPENTHEAD_EXAMPLE_UDP_SERVER_PORT
|
|
int "the port of UDP server"
|
|
default 54321
|
|
depends on OPENTHREAD_ENABLE_UDP_SOCKET_EXAMPLE
|
|
help
|
|
Set the connect port of socket
|
|
|
|
endmenu
|