zephyr/drivers/wifi/Kconfig
Dario Pennisi 9bdf1cdb0e drivers/wifi: Add winc1500 WiFi driver
Adding support for WINC1500 WiFi chip.

It introduces the wifi drivers sub-directory.

It provides a Full-MAC for 802.11 and an offloaded network stack as
well. The driver uses Atmel's winc1500 HAL.

Signed-off-by: Dario Pennisi <dario@iptronix.com>
Signed-off-by: Anas Nashif <anas.nashif@intel.com>
Signed-off-by: Massimiliano Agneni <massimiliano.agneni@iptronix.com>
Signed-off-by: Tomasz Bursztyka <tomasz.bursztyka@linux.intel.com>
2018-05-17 10:46:26 +03:00

48 lines
1.1 KiB
Text

# Kconfig - WiFi drivers configuration options
#
# Copyright (c) 2017 Intel Corporation
#
# SPDX-License-Identifier: Apache-2.0
#
menuconfig WIFI
bool "add support for WiFi Drivers"
default n
if WIFI
config SYS_LOG_WIFI_LEVEL
int "WiFi driver log level"
depends on SYS_LOG
default 0
range 0 4
help
Sets log level for WiFi Device Drivers.
Levels are:
0 OFF, do not write
1 ERROR, only write SYS_LOG_ERR
2 WARNING, write SYS_LOG_WRN in addition to previous level
3 INFO, write SYS_LOG_INF in addition to previous levels
4 DEBUG, write SYS_LOG_DBG in addition to previous levels
config WIFI_INIT_PRIORITY
int "WiFi driver init priority"
depends on WIFI
default 80
help
WiFi 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 WiFi device drivers"
default n
select NET_OFFLOAD
help
Enable support for Full-MAC WiFi devices.
source "drivers/wifi/Kconfig.winc1500"
endif # WIFI