@@ -522,6 +522,7 @@ config WIFI_RMT_WAPI_PSK
522522config WIFI_RMT_SUITE_B_192
523523 bool "Enable NSA suite B support with 192 bit key"
524524 default n
525+ depends on WIFI_RMT_ENTERPRISE_SUPPORT
525526 depends on SLAVE_SOC_WIFI_GCMP_SUPPORT
526527 select WIFI_RMT_GCMP_SUPPORT
527528 select WIFI_RMT_GMAC_SUPPORT
@@ -700,6 +701,14 @@ menu "WPS Configuration Options"
700701 be shared to other devices, making it in readable format increases
701702 that risk, also passphrase requires pbkdf2 to convert in psk.
702703
704+ config WIFI_RMT_WPS_RECONNECT_ON_FAIL
705+ bool "Reconnect to previous SSID if WPS failed"
706+ default n
707+ help
708+ Select this option to enable reconnection to previous SSID if WPS fails.
709+ This option will only work if station was connected to a network
710+ when WPS was started.
711+
703712endmenu # "WPS Configuration Options"
704713
705714
@@ -714,12 +723,6 @@ config WIFI_RMT_DEBUG_PRINT
714723 Enabling this could increase the build size ~60kb
715724 depending on the project logging level.
716725
717- config WIFI_RMT_TESTING_OPTIONS
718- bool "Add DPP testing code"
719- default n
720- help
721- Select this to enable unity test for DPP.
722-
723726config WIFI_RMT_ENTERPRISE_SUPPORT
724727 bool "Enable enterprise option"
725728 default y
@@ -1140,16 +1143,16 @@ if WIFI_RMT_WPS_PASSPHRASE
11401143 default WIFI_RMT_WPS_PASSPHRASE
11411144endif
11421145
1143- if WIFI_RMT_DEBUG_PRINT
1144- config ESP_WIFI_DEBUG_PRINT # ignore: multiple-definition
1146+ if WIFI_RMT_WPS_RECONNECT_ON_FAIL
1147+ config ESP_WIFI_WPS_RECONNECT_ON_FAIL # ignore: multiple-definition
11451148 bool
1146- default WIFI_RMT_DEBUG_PRINT
1149+ default WIFI_RMT_WPS_RECONNECT_ON_FAIL
11471150endif
11481151
1149- if WIFI_RMT_TESTING_OPTIONS
1150- config ESP_WIFI_TESTING_OPTIONS # ignore: multiple-definition
1152+ if WIFI_RMT_DEBUG_PRINT
1153+ config ESP_WIFI_DEBUG_PRINT # ignore: multiple-definition
11511154 bool
1152- default WIFI_RMT_TESTING_OPTIONS
1155+ default WIFI_RMT_DEBUG_PRINT
11531156endif
11541157
11551158if WIFI_RMT_ENTERPRISE_SUPPORT
0 commit comments