Kconfig.projbuild 656 B

1234567891011121314151617181920212223
  1. menu "OpenThread CLI Example"
  2. config OPENTHREAD_CLI_ESP_EXTENSION
  3. bool "Enable Espressif's extended features"
  4. default y
  5. help
  6. Enable Espressif's extended features include TCP socket, UDP socket.
  7. config OPENTHREAD_CLI_TCP_SERVER_PORT
  8. int "the port of TCP server"
  9. default 12345
  10. depends on OPENTHREAD_CLI_ESP_EXTENSION
  11. help
  12. Set the connect port of socket
  13. config OPENTHREAD_CLI_UDP_SERVER_PORT
  14. int "the port of UDP server"
  15. default 54321
  16. depends on OPENTHREAD_CLI_ESP_EXTENSION
  17. help
  18. Set the connect port of socket
  19. endmenu