From 1dc2a98d1eef76ff5bba838bcf0c93e64a5caa1b Mon Sep 17 00:00:00 2001 From: zwx Date: Fri, 20 Oct 2023 14:03:24 +0800 Subject: [PATCH] fix(openthread): fix host interface mdoe none --- components/openthread/src/esp_openthread_platform.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/components/openthread/src/esp_openthread_platform.cpp b/components/openthread/src/esp_openthread_platform.cpp index 92d50a078b..ef46800a78 100644 --- a/components/openthread/src/esp_openthread_platform.cpp +++ b/components/openthread/src/esp_openthread_platform.cpp @@ -113,6 +113,9 @@ static esp_err_t esp_openthread_host_interface_init(const esp_openthread_platfor "esp_openthread_host_cli_usb_init failed"); break; #endif + case HOST_CONNECTION_MODE_NONE: + ESP_LOGI(OT_PLAT_LOG_TAG, "Host connection mode none"); + break; default: return ESP_FAIL; }