mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-02 02:33:18 +00:00
Automatically enable es-WiFI driver when WIFI is enabled. Signed-off-by: Loic Poulain <loic.poulain@linaro.org>
30 lines
527 B
Plaintext
30 lines
527 B
Plaintext
# Kconfig - es-WiFi driver options
|
|
|
|
#
|
|
# Copyright (c) 2018 Linaro
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
menuconfig WIFI_ESWIFI
|
|
bool "Inventek eS-WiFi support"
|
|
depends on WIFI
|
|
select NET_L2_WIFI_MGMT
|
|
select WIFI_OFFLOAD
|
|
select NET_OFFLOAD
|
|
|
|
if WIFI_ESWIFI
|
|
|
|
config WIFI_ESWIFI_NAME
|
|
string "Driver name"
|
|
default "ESWIFI"
|
|
|
|
config WIFI_ESWIFI_THREAD_PRIO
|
|
int "esWiFi threads priority"
|
|
default 2
|
|
help
|
|
This option sets the priority of the esWiFi threads.
|
|
Do not touch it unless you know what you are doing.
|
|
|
|
endif
|