Skip to content

Commit

Permalink
Increase chip shell task stack size for esp32 platform
Browse files Browse the repository at this point in the history
  • Loading branch information
wqx6 committed Jan 7, 2022
1 parent b81facc commit ca94852
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion examples/platform/esp32/shell_extension/launch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,11 @@ 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
xTaskCreate(&MatterShellTask, "chip_cli", 2048, NULL, 5, NULL);
xTaskCreate(&MatterShellTask, "chip_cli", 2560, NULL, 5, NULL);
}

} // namespace chip

0 comments on commit ca94852

Please sign in to comment.