Kconfig.projbuild 942 B

1234567891011121314151617181920212223242526272829303132333435
  1. menu "Example Configuration"
  2. config WIFI_SSID
  3. string "WiFi SSID"
  4. default "myssid"
  5. help
  6. SSID (network name) for the example to connect to.
  7. config WIFI_PASSWORD
  8. string "WiFi Password"
  9. default "mypassword"
  10. help
  11. WiFi password (WPA or WPA2) for the example to use.
  12. choice WEBSOCKET_URI_SOURCE
  13. prompt "Websocket URI source"
  14. default WEBSOCKET_URI_FROM_STRING
  15. help
  16. Selects the source of the URI used in the example.
  17. config WEBSOCKET_URI_FROM_STRING
  18. bool "From string"
  19. config WEBSOCKET_URI_FROM_STDIN
  20. bool "From stdin"
  21. endchoice
  22. config WEBSOCKET_URI
  23. string "Websocket endpoint URI"
  24. depends on WEBSOCKET_URI_FROM_STRING
  25. default "ws://echo.websocket.org"
  26. help
  27. URL of websocket endpoint this example connects to and sends echo
  28. endmenu