Kconfig.projbuild 685 B

12345678910111213141516171819202122232425262728
  1. menu "Example Configuration"
  2. config EXAMPLE_WIFI_SSID
  3. string "Wi-Fi SSID"
  4. default "eth2ap"
  5. help
  6. Set the SSID of Wi-Fi ap interface.
  7. config EXAMPLE_WIFI_PASSWORD
  8. string "Wi-Fi Password"
  9. default "12345678"
  10. help
  11. Set the password of Wi-Fi ap interface.
  12. config EXAMPLE_WIFI_CHANNEL
  13. int "WiFi channel"
  14. range 1 13
  15. default 1
  16. help
  17. Set the channel of Wi-Fi ap.
  18. config EXAMPLE_MAX_STA_CONN
  19. int "Maximum STA connections"
  20. default 4
  21. help
  22. Maximum number of the station that allowed to connect to current Wi-Fi hotspot.
  23. endmenu