zephyr/drivers/wifi/eswifi/Kconfig.eswifi
Loic Poulain e7c4d29c86 drivers: wifi: eswifi: Add debug shell
Add a esWiFi shell for device specific controls.
For now used to send at commands.

Signed-off-by: Loic Poulain <loic.poulain@linaro.org>
2020-07-30 16:35:58 +03:00

34 lines
636 B
Plaintext

# 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
select NET_SOCKETS
select NET_SOCKETS_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.
config WIFI_ESWIFI_SHELL
bool "esWiFi shell"
depends on SHELL
help
Enable esWiFi shell
endif