Skip to content

Commit

Permalink
[Silabs]Fix init task stack size on EFR32 (#28816)
Browse files Browse the repository at this point in the history
* Use 1k stack for main task

* keep 917 at 8k for now
  • Loading branch information
jmartinez-silabs authored and pull[bot] committed Jun 7, 2024
1 parent 549bdd1 commit 4481976
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions examples/platform/silabs/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,11 @@
/**********************************************************
* Defines
*********************************************************/
#ifdef SIWX_917
#define MAIN_TASK_STACK_SIZE (1024 * 8)
#else
#define MAIN_TASK_STACK_SIZE (1024)
#endif
#define MAIN_TASK_PRIORITY (configMAX_PRIORITIES - 1)

using namespace ::chip;
Expand Down

0 comments on commit 4481976

Please sign in to comment.