From 97026e4f6b3b53821c3e2c3fa5446258d4d5d0b6 Mon Sep 17 00:00:00 2001 From: jess Date: Fri, 3 Apr 2026 12:02:55 -0700 Subject: [PATCH] init wifi_cfg in app_main startup sequence --- main/eis4.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/main/eis4.c b/main/eis4.c index 3c30ced..5c3db94 100644 --- a/main/eis4.c +++ b/main/eis4.c @@ -5,6 +5,7 @@ #include "echem.h" #include "protocol.h" #include "wifi_transport.h" +#include "wifi_cfg.h" #include "temp.h" #include "refs.h" #include "freertos/FreeRTOS.h" @@ -64,6 +65,8 @@ void app_main(void) eis_load_ph_cal(); temp_init(); + wifi_cfg_init(); + esp_netif_init(); esp_event_loop_create_default();