esp-idf/examples/wifi/scan/main/Kconfig.projbuild
jgujarathi 0d7c909e87 feat(esp_wifi): Showcases the new scan by bitmap config
- Showcases the ability to scan by the bitmap config newly added
to the wifi_scan_config_t by implementing it in the scan config
2024-04-01 23:00:01 +08:00

18 lines
705 B
Plaintext

menu "Example Configuration"
config EXAMPLE_SCAN_LIST_SIZE
int "Max size of scan list"
range 0 20
default 10
help
The size of array that will be used to retrieve the list of access points.
config EXAMPLE_USE_SCAN_CHANNEL_BITMAP
bool "Scan only non overlapping channels using Channel bitmap"
default 0
help
Enable this to scan only the non overlapping channels i.e 1,6,11 by mentioning a channel bitmap
in scan config. If you wish to scan a different set of specific channels, please edit the channel_list
array in scan.c. Channels for a 2.4 ghz network range should range from 1-14.
endmenu