From 6254933e0f5e17db606647dcf3fe0f05a9072798 Mon Sep 17 00:00:00 2001 From: Wang Qixiang <43193572+wqx6@users.noreply.github.com> Date: Fri, 7 Jan 2022 22:35:57 +0800 Subject: [PATCH] Bugfix: Add chip shell engine initializing for esp32 platform (#13364) --- examples/platform/esp32/shell_extension/launch.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/platform/esp32/shell_extension/launch.cpp b/examples/platform/esp32/shell_extension/launch.cpp index 59bd147b7d07cd..48707739ef0d51 100644 --- a/examples/platform/esp32/shell_extension/launch.cpp +++ b/examples/platform/esp32/shell_extension/launch.cpp @@ -37,6 +37,7 @@ namespace chip { void LaunchShell() { + chip::Shell::Engine::Root().Init(); #if CONFIG_HEAP_TRACING_STANDALONE || CONFIG_HEAP_TASK_TRACKING idf::chip::RegisterHeapTraceCommands(); #endif // CONFIG_HEAP_TRACING_STANDALONE || CONFIG_HEAP_TASK_TRACKING