From c74ea1aca0e36078fdec7b9c6a8889298b80f04c Mon Sep 17 00:00:00 2001 From: cnicc <130982462+cnicc@users.noreply.github.com> Date: Tue, 14 Jul 2026 10:38:40 +0200 Subject: [PATCH] fix(openthread): restore ot_network_auto_start() call in ot_br example --- examples/openthread/ot_br/main/esp_ot_br.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/examples/openthread/ot_br/main/esp_ot_br.c b/examples/openthread/ot_br/main/esp_ot_br.c index 89449a25ecf..889ec643317 100644 --- a/examples/openthread/ot_br/main/esp_ot_br.c +++ b/examples/openthread/ot_br/main/esp_ot_br.c @@ -134,4 +134,7 @@ void app_main(void) ESP_ERROR_CHECK(esp_coex_wifi_i154_enable()); #endif #endif +#if CONFIG_OPENTHREAD_NETWORK_AUTO_START + ot_network_auto_start(); +#endif }