From 2f35ed0ec763f6d9cd6ed0b1f6fd86486adf26dd Mon Sep 17 00:00:00 2001 From: tangyuxin <462747508@qq.com> Date: Wed, 6 Jun 2018 11:03:09 +0800 Subject: [PATCH 1/2] =?UTF-8?q?[components][drivers]Kconfig=E6=9B=B4?= =?UTF-8?q?=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/drivers/Kconfig | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/components/drivers/Kconfig b/components/drivers/Kconfig index 59fd83e091..bd1485e526 100755 --- a/components/drivers/Kconfig +++ b/components/drivers/Kconfig @@ -162,6 +162,24 @@ config RT_USING_WIFI bool "Using Wi-Fi network" default n + if RT_USING_WIFI + config RT_USING_WLAN_STA + bool "Using station mode" + default n + + config RT_USING_WLAN_AP + bool "Using ap mode" + default n + + config WIFI_DEVICE_STA_NAME + string "the wifi device name for station" + default "w0" + + config WIFI_DEVICE_AP_NAME + string "the wifi device name for ap" + default "ap" + endif + config RT_USING_AUDIO bool "Using Audio device drivers" default n From c67595c2428d1094e967a91ef6a6815963f130a2 Mon Sep 17 00:00:00 2001 From: tangyuxin <462747508@qq.com> Date: Wed, 6 Jun 2018 11:07:50 +0800 Subject: [PATCH 2/2] =?UTF-8?q?[components][drivers]Kconfig=20wifi?= =?UTF-8?q?=E9=BB=98=E8=AE=A4=E6=89=93=E5=BC=80sta=E6=A8=A1=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/drivers/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/drivers/Kconfig b/components/drivers/Kconfig index bd1485e526..7c3debb774 100755 --- a/components/drivers/Kconfig +++ b/components/drivers/Kconfig @@ -165,7 +165,7 @@ config RT_USING_WIFI if RT_USING_WIFI config RT_USING_WLAN_STA bool "Using station mode" - default n + default y config RT_USING_WLAN_AP bool "Using ap mode"