1
0
mirror of https://github.com/esphome/esphome.git synced 2026-02-08 00:31:58 +00:00

Revert "[wifi] Disable SoftAP support on Arduino ESP32 when ap: not configured" (#13099)

This commit is contained in:
J. Nick Koston
2026-01-09 04:35:19 -10:00
committed by GitHub
parent c40f44f4bd
commit 3d54ccac65

View File

@@ -475,7 +475,7 @@ async def to_code(config):
)
cg.add(var.set_ap_timeout(conf[CONF_AP_TIMEOUT]))
cg.add_define("USE_WIFI_AP")
elif CORE.is_esp32:
elif CORE.is_esp32 and not CORE.using_arduino:
add_idf_sdkconfig_option("CONFIG_ESP_WIFI_SOFTAP_SUPPORT", False)
add_idf_sdkconfig_option("CONFIG_LWIP_DHCPS", False)