2021-07-19 04:37:56 -04:00
|
|
|
menu "OpenThread CLI Example"
|
2021-05-25 09:13:41 -04:00
|
|
|
|
2021-07-19 04:37:56 -04:00
|
|
|
config OPENTHREAD_CLI_ESP_EXTENSION
|
|
|
|
bool "Enable Espressif's extended features"
|
|
|
|
default y
|
|
|
|
help
|
|
|
|
Enable Espressif's extended features include TCP socket, UDP socket.
|
2021-05-25 09:13:41 -04:00
|
|
|
|
2021-07-19 04:37:56 -04:00
|
|
|
config OPENTHREAD_CLI_TCP_SERVER_PORT
|
2021-05-25 09:13:41 -04:00
|
|
|
int "the port of TCP server"
|
|
|
|
default 12345
|
2021-07-19 04:37:56 -04:00
|
|
|
depends on OPENTHREAD_CLI_ESP_EXTENSION
|
2021-05-25 09:13:41 -04:00
|
|
|
help
|
|
|
|
Set the connect port of socket
|
|
|
|
|
2021-07-19 04:37:56 -04:00
|
|
|
config OPENTHREAD_CLI_UDP_SERVER_PORT
|
2021-05-25 09:13:41 -04:00
|
|
|
int "the port of UDP server"
|
|
|
|
default 54321
|
2021-07-19 04:37:56 -04:00
|
|
|
depends on OPENTHREAD_CLI_ESP_EXTENSION
|
2021-05-25 09:13:41 -04:00
|
|
|
help
|
|
|
|
Set the connect port of socket
|
|
|
|
|
|
|
|
endmenu
|