Kconfig.projbuild 577 B

1234567891011121314151617181920
  1. menu "Example Configuration"
  2. config EXAMPLE_WIFI_SSID
  3. string "WiFi SSID"
  4. default "myssid"
  5. help
  6. SSID (network name) for the example to connect to.
  7. config EXAMPLE_WIFI_PASSWORD
  8. string "WiFi Password"
  9. default "mypassword"
  10. help
  11. WiFi password (WPA or WPA2) for the example to use.
  12. config EXAMPLE_MAXIMUM_RETRY
  13. int "Maximum retry"
  14. default 5
  15. help
  16. Set the Maximum retry to avoid station reconnecting to the AP unlimited when the AP is really inexistent.
  17. endmenu