1# WiFi drivers configuration options 2 3# Copyright (c) 2017 Intel Corporation 4# SPDX-License-Identifier: Apache-2.0 5 6menuconfig WIFI 7 bool "Wi-Fi Drivers" 8 9if WIFI 10 11module = WIFI 12module-dep = LOG 13module-str = Log level for Wi-Fi driver 14module-help = Sets log level for Wi-Fi Device Drivers. 15source "subsys/net/Kconfig.template.log_config.net" 16 17config WIFI_INIT_PRIORITY 18 int "Wi-Fi driver init priority" 19 default 80 20 help 21 Wi-Fi device driver initialization priority. 22 Do not mess with it unless you know what you are doing. 23 Note that the priority needs to be lower than the net stack 24 so that it can start before the networking sub-system. 25 26config WIFI_OFFLOAD 27 bool "Support offloaded Wi-Fi device drivers" 28 select NET_OFFLOAD 29 help 30 Enable support for Full-MAC Wi-Fi devices. 31 32source "drivers/wifi/winc1500/Kconfig.winc1500" 33source "drivers/wifi/simplelink/Kconfig.simplelink" 34source "drivers/wifi/eswifi/Kconfig.eswifi" 35source "drivers/wifi/esp_at/Kconfig.esp_at" 36source "drivers/wifi/esp32/Kconfig.esp32" 37 38endif # WIFI 39