From 7a71b539172e03112c67913e18db044c070fe848 Mon Sep 17 00:00:00 2001 From: Hrishikesh Dhayagude Date: Mon, 12 Dec 2022 14:57:09 +0530 Subject: [PATCH] ESP32: Reduce the Wi-Fi reconnection interval to 100 ms The retry interval for reconnection need not be so high. This will help in reduced time and improved experience for commissioning --- config/esp32/components/chip/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/esp32/components/chip/Kconfig b/config/esp32/components/chip/Kconfig index d86215bc57ce9d..c5af3c66ad5d9c 100644 --- a/config/esp32/components/chip/Kconfig +++ b/config/esp32/components/chip/Kconfig @@ -319,7 +319,7 @@ menu "CHIP Device Layer" config WIFI_STATION_RECONNECT_INTERVAL int "WiFi Station Interface Reconnect Interval (ms)" range 0 65535 - default 5000 + default 100 depends on ENABLE_WIFI_STATION help The interval at which the CHIP platform will attempt to reconnect to the configured WiFi network (in milliseconds).