Kconfig.projbuild 615 B

12345678910111213141516171819202122232425262728
  1. menu "Example Configuration"
  2. config TARGET_DOMAIN
  3. string "Target Domain"
  4. default "www.baidu.com"
  5. help
  6. Target domain for the example to connect to.
  7. config TARGET_PORT_NUMBER
  8. int "Target port number"
  9. range 0 65535
  10. default 443
  11. help
  12. Target port number for the example to connect to.
  13. config WIFI_SSID
  14. string "WiFi SSID"
  15. default "myssid"
  16. help
  17. SSID (network name) for the example to connect to.
  18. config WIFI_PASSWORD
  19. string "WiFi Password"
  20. default "mypassword"
  21. help
  22. WiFi password (WPA or WPA2) for the example to use.
  23. endmenu