mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-07 03:12:50 +00:00
These symbols appear within an 'if WIFI' (in drivers/wifi/Kconfig). 'if FOO' is just shorthand for adding 'depends on FOO' to each item within the 'if'. Dependencies on menus work similarly. There are no "conditional includes" in Kconfig, so 'if FOO' has no special meaning around a source. Conditional includes wouldn't be possible, because an if condition could include (directly or indirectly) forward references to symbols not defined yet. Tip: When adding a symbol, check its dependencies in the menuconfig ('ninja menuconfig', then / to jump to the symbol). The menuconfig also shows how the file with the symbol got included, so if you see duplicated dependencies, it's easy to hunt down where they come from. Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
29 lines
510 B
Plaintext
29 lines
510 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"
|
|
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
|