mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-08 12:15:21 +00:00
es-WiFi compatible modules use IWIN AT command set. This driver is split into several layers: - bus layer: interface to transmit AT commands (SPI, USB, UART...) - core layer: es-WiFi module management (state, scan...) - offload layer: TCP/IP offload operations (connect, listen...) This driver has been tested with stm32l4 disco iot board (disco_l475_iot1) and the wifi sample: $ select wifi $ scan $ connect "CISCO" 5 password $ select net $ tcp connect 192.168.1.21 4242 $ tcp send HelloWorld! Signed-off-by: Loic Poulain <loic.poulain@linaro.org>
41 lines
990 B
Plaintext
41 lines
990 B
Plaintext
# Kconfig - WiFi drivers configuration options
|
|
|
|
#
|
|
# Copyright (c) 2017 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
menuconfig WIFI
|
|
bool "add support for WiFi Drivers"
|
|
|
|
if WIFI
|
|
|
|
module = WIFI
|
|
module-dep = LOG
|
|
module-str = Log level for WiFi driver
|
|
module-help = Sets log level for WiFi Device Drivers.
|
|
source "subsys/net/Kconfig.template.log_config.net"
|
|
|
|
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"
|
|
select NET_OFFLOAD
|
|
help
|
|
Enable support for Full-MAC WiFi devices.
|
|
|
|
source "drivers/wifi/winc1500/Kconfig.winc1500"
|
|
source "drivers/wifi/simplelink/Kconfig.simplelink"
|
|
source "drivers/wifi/eswifi/Kconfig.eswifi"
|
|
|
|
endif # WIFI
|