From e4e171b314711dc923b47d148a16d70c394fa065 Mon Sep 17 00:00:00 2001 From: Morgan Allen Date: Mon, 3 Sep 2018 15:34:16 -0700 Subject: [PATCH] switched to nvs no longer need memory address --- Kconfig | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/Kconfig b/Kconfig index a346c1f..ca23e77 100644 --- a/Kconfig +++ b/Kconfig @@ -1,16 +1,17 @@ menuconfig WIFI_MANAGER_ENABLED - bool "WIFI_MANAGER" - default y - help - Select this option to enable WIFI_MANAGER driver and show the submodule with configuration + bool "WiFi Manager" + default y + help + Select this option to enable WIFI_MANAGER driver and show the submodule with configuration -config WIFI_MANAGER_MEM_ADDR - hex "Memory location to store AP info in flash" - depends on WIFI_MANAGER_ENABLED - default 0x04d000 - help - Memory location to store WiFi AP info +if WIFI_MANAGER_ENABLED +config WIFI_MANAGER_TEST_AP + string "ESSID for test AP" + +config WIFI_MANAGER_TEST_PWD + string "password for test AP" config WIFI_MANAGER_MAX_AP int "Maximum number of APs to store in flash" default 8 +endif