From 97048b8ceb43ea62bb2bb9260fd17e5a2a77f257 Mon Sep 17 00:00:00 2001 From: nick Date: Wed, 1 Jul 2026 23:49:30 -0600 Subject: [PATCH] debug: add AP config POST route to LilyGO isolation --- firmware/esp32/overland-controller/overland-controller.ino | 1 + 1 file changed, 1 insertion(+) diff --git a/firmware/esp32/overland-controller/overland-controller.ino b/firmware/esp32/overland-controller/overland-controller.ino index a562b02..0e233e3 100644 --- a/firmware/esp32/overland-controller/overland-controller.ino +++ b/firmware/esp32/overland-controller/overland-controller.ino @@ -4195,6 +4195,7 @@ void setup() { server.on(API_V1("/config/export"), HTTP_GET, handleExportConfig); server.on(API_V1("/config/wifi"), HTTP_GET, handleGetWifiConfig); server.on(API_V1("/config/ap"), HTTP_GET, handleGetApConfig); + server.on(API_V1("/config/ap"), HTTP_POST, handleUpdateApConfig); server.on(API_V1("/config/device"), HTTP_POST, handleUpdateDeviceConfig);