Kconfig 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. help
  20. This option is applicable only when provisioning transport is BLE.
  21. config WIFI_PROV_BLE_SEC_CONN
  22. bool
  23. prompt "Enable BLE Secure connection flag"
  24. depends on BT_NIMBLE_ENABLED
  25. default y
  26. help
  27. Used to enable Secure connection support when provisioning transport is BLE.
  28. config WIFI_PROV_BLE_FORCE_ENCRYPTION
  29. bool
  30. prompt "Force Link Encryption during characteristic Read / Write"
  31. help
  32. Used to enforce link encryption when attempting to read / write characteristic
  33. config WIFI_PROV_KEEP_BLE_ON_AFTER_PROV
  34. bool "Keep BT on after provisioning is done"
  35. depends on BT_ENABLED
  36. select ESP_PROTOCOMM_KEEP_BLE_ON_AFTER_BLE_STOP
  37. config WIFI_PROV_DISCONNECT_AFTER_PROV
  38. bool "Terminate connection after provisioning is done"
  39. depends on WIFI_PROV_KEEP_BLE_ON_AFTER_PROV
  40. default y
  41. select ESP_PROTOCOMM_DISCONNECT_AFTER_BLE_STOP
  42. choice WIFI_PROV_STA_SCAN_METHOD
  43. bool "Wifi Provisioning Scan Method"
  44. default WIFI_PROV_STA_ALL_CHANNEL_SCAN
  45. config WIFI_PROV_STA_ALL_CHANNEL_SCAN
  46. bool "All Channel Scan"
  47. help
  48. Scan will end after scanning the entire channel. This option is useful in Mesh WiFi Systems.
  49. config WIFI_PROV_STA_FAST_SCAN
  50. bool "Fast Scan"
  51. help
  52. Scan will end after an AP matching with the SSID has been detected.
  53. endchoice
  54. endmenu