Kconfig.projbuild 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. menu "OpenThread Extension CLI"
  2. menuconfig OPENTHREAD_CLI_ESP_EXTENSION
  3. depends on OPENTHREAD_FTD || OPENTHREAD_MTD
  4. bool "Enable Espressif's extended features"
  5. default y
  6. help
  7. Enable Espressif's extended features.
  8. config OPENTHREAD_CLI_IPERF
  9. bool "Enable iperf command"
  10. depends on OPENTHREAD_CLI_ESP_EXTENSION
  11. default y
  12. config OPENTHREAD_CLI_TCP_SOCKET
  13. bool "Enable TCP socket command"
  14. depends on OPENTHREAD_CLI_ESP_EXTENSION
  15. default y
  16. config OPENTHREAD_CLI_TCP_SERVER_PORT
  17. int "the port of TCP server"
  18. default 12345
  19. depends on OPENTHREAD_CLI_TCP_SOCKET
  20. help
  21. Set the connect port of socket
  22. config OPENTHREAD_CLI_UDP_SOCKET
  23. bool "Enable UDP socket command"
  24. depends on OPENTHREAD_CLI_ESP_EXTENSION
  25. default y
  26. config OPENTHREAD_CLI_UDP_SERVER_PORT
  27. int "the port of UDP server"
  28. default 54321
  29. depends on OPENTHREAD_CLI_UDP_SOCKET
  30. help
  31. Set the connect port of socket
  32. config OPENTHREAD_CLI_WIFI
  33. bool "Enable wifi connection command"
  34. depends on OPENTHREAD_CLI_ESP_EXTENSION && OPENTHREAD_BORDER_ROUTER
  35. default y
  36. endmenu