b4854debd1
Recently WiFi ESP32 driver (utilizing WiFi radio in ESP32 SoC) was introduced into drivers/wifi/esp32/ and it already caused confusion as there was existing drivers/wifi/esp/ directory for ESP-AT driver (utilizing external WiFi chip, by communicating using AT commands from any serial capable platform). So question has arisen whether it is good to merge both, while they are totally different drivers. Rename ESP-AT driver to be placed in drivers/wifi/esp_at/, so that it is easier to figure out difference between "esp32" and "esp_at" just by looking at driver name. Rename also DT compatible and all Kconfig options for the same reason. Signed-off-by: Marcin Niestroj <m.niestroj@grinn-global.com>
39 lines
1 KiB
Plaintext
39 lines
1 KiB
Plaintext
# WiFi drivers configuration options
|
|
|
|
# Copyright (c) 2017 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
menuconfig WIFI
|
|
bool "Wi-Fi Drivers"
|
|
|
|
if WIFI
|
|
|
|
module = WIFI
|
|
module-dep = LOG
|
|
module-str = Log level for Wi-Fi driver
|
|
module-help = Sets log level for Wi-Fi Device Drivers.
|
|
source "subsys/net/Kconfig.template.log_config.net"
|
|
|
|
config WIFI_INIT_PRIORITY
|
|
int "Wi-Fi driver init priority"
|
|
default 80
|
|
help
|
|
Wi-Fi device driver initialization priority.
|
|
Do not mess with it unless you know what you are doing.
|
|
Note that the priority needs to be lower than the net stack
|
|
so that it can start before the networking sub-system.
|
|
|
|
config WIFI_OFFLOAD
|
|
bool "Support offloaded Wi-Fi device drivers"
|
|
select NET_OFFLOAD
|
|
help
|
|
Enable support for Full-MAC Wi-Fi devices.
|
|
|
|
source "drivers/wifi/winc1500/Kconfig.winc1500"
|
|
source "drivers/wifi/simplelink/Kconfig.simplelink"
|
|
source "drivers/wifi/eswifi/Kconfig.eswifi"
|
|
source "drivers/wifi/esp_at/Kconfig.esp_at"
|
|
source "drivers/wifi/esp32/Kconfig.esp32"
|
|
|
|
endif # WIFI
|