esp-idf/examples/wifi/roaming/main/Kconfig.projbuild
kapil.gupta 27101f9454 wpa_supplicant: Add initial roaming support
This commit adds different features from 802.11k and 802.11v
specifications to make the device ready for network assisted
roaming. It also adds initial framework for device to detect
whether it needs to move to a better AP.

Followings are added as part of this.

1. Support for sending neighbor report request and provide
   the report back to the APP.
2. Support for beacon measurement report.
3. Support for link measurement report.
4. Support for sending bss transition management query frame
   (triggered by the APP).
5. Support for bss transition management request and move
   to the candidate based on that.
6. Sending the bss transition management response.
2020-11-17 17:15:26 +05:30

22 lines
603 B
Plaintext

menu "Example Configuration"
config EXAMPLE_WIFI_SSID
string "WiFi SSID"
default "roaming_test"
help
SSID (network name) for the example to connect to.
config EXAMPLE_WIFI_PASSWORD
string "WiFi Password"
default "password"
help
WiFi password (WPA or WPA2) for the example to use.
config EXAMPLE_WIFI_RSSI_THRESHOLD
int "WiFi RSSI threshold to trigger roaming"
default 0
help
WiFi RSSI threshold to trigger roaming value in dbm (-100 to 0). 0 denotes feature is disabled.
endmenu