Skip to content

Commit

Permalink
[Silabs] : SiWX917- Reduce the task stack and buffer size to reduce t…
Browse files Browse the repository at this point in the history
…he Ram Consumption (#26242)

* [Silabs] : SiWX917- Reduce the task stack and buffer size to reduce the RAM consumption

* Restyled by clang-format

* Review Comment addressed

---------

Co-authored-by: Restyled.io <commits@restyled.io>
  • Loading branch information
2 people authored and pull[bot] committed Aug 4, 2023
1 parent accd526 commit 1182863
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions examples/platform/silabs/SiWx917/SiWx917/wfx_rsi.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@
* Interface to RSI Sapis
*/

#define WFX_RSI_WLAN_TASK_SZ (1024 + 512 + 256 + 1024 + 512) /* Unknown how big this should be */
#define WFX_RSI_TASK_SZ (1024 + 1024 + 1024) /* Stack for the WFX/RSI task */
#define WFX_RSI_BUF_SZ (1024 * 15) /* May need tweak */
#define WFX_RSI_CONFIG_MAX_JOIN (5) /* Max join retries */
#define WFX_RSI_WLAN_TASK_SZ (1024 + 512 + 256) /* Stack for the WLAN task */
#define WFX_RSI_TASK_SZ (1024 + 1024) /* Stack for the WFX/RSI task */
#define WFX_RSI_BUF_SZ (1024 * 10) /* May need tweak */
#define WFX_RSI_CONFIG_MAX_JOIN (5) /* Max join retries */

/*
* Various events fielded by the wfx_rsi task
Expand Down

0 comments on commit 1182863

Please sign in to comment.