Kconfig 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. depends on BT_NIMBLE_ENABLED
  33. default y
  34. help
  35. Used to enforce link encryption when attempting to read / write characteristic
  36. endmenu