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