Kconfig 806 B

12345678910111213141516171819202122232425
  1. menu "Wi-Fi Provisioning Manager"
  2. config WIFI_PROV_SCAN_MAX_ENTRIES
  3. int "Max Wi-Fi Scan Result Entries"
  4. default 16
  5. range 1 255
  6. help
  7. This sets the maximum number of entries of Wi-Fi scan results that will be kept by the provisioning manager
  8. config WIFI_PROV_AUTOSTOP_TIMEOUT
  9. int "Provisioning auto-stop timeout"
  10. default 30
  11. range 5 600
  12. help
  13. Time (in seconds) after which the Wi-Fi provisioning manager will auto-stop after connecting to
  14. a Wi-Fi network successfully.
  15. config WIFI_PROV_BLE_BONDING
  16. bool
  17. default n
  18. prompt "Enable BLE bonding"
  19. depends on BT_ENABLED
  20. help
  21. This option is applicable only when provisioning transport is BLE.
  22. endmenu