Kconfig 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. prompt "Enable BLE bonding"
  18. depends on BT_ENABLED
  19. default y
  20. help
  21. This option is applicable only when provisioning transport is BLE.
  22. config WIFI_PROV_BLE_SEC_CONN
  23. bool
  24. prompt "Enable BLE Secure connection flag"
  25. depends on BT_NIMBLE_ENABLED
  26. default y
  27. help
  28. Used to enable Secure connection support when provisioning transport is BLE.
  29. config WIFI_PROV_BLE_FORCE_ENCRYPTION
  30. bool
  31. prompt "Force Link Encryption during characteristic Read / Write"
  32. default y
  33. help
  34. Used to enforce link encryption when attempting to read / write characteristic
  35. config WIFI_PROV_KEEP_BLE_ON_AFTER_PROV
  36. bool "Keep BT on after provisioning is done"
  37. depends on BT_ENABLED
  38. config WIFI_PROV_DISCONNECT_AFTER_PROV
  39. bool "Terminate connection after provisioning is done"
  40. depends on WIFI_PROV_KEEP_BLE_ON_AFTER_PROV
  41. default y
  42. endmenu