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 a22bdbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/platform/esp32/shell_extension/launch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ void LaunchShell()
#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 a22bdbf

Please sign in to comment.