Skip to content

Commit

Permalink
Adding 3k to heap to counter some fragmentation issues
Browse files Browse the repository at this point in the history
  • Loading branch information
jmartinez-silabs committed Jun 17, 2021
1 parent d3be14f commit 9369d62
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion examples/lighting-app/efr32/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ efr32_sdk("sdk") {
defines = [
"BOARD_ID=${efr32_board}",
"CHIP_DEVICE_CONFIG_USE_TEST_SETUP_PIN_CODE=${setupPinCode}",
"SL_HEAP_SIZE=(13 * 1024)",
"SL_HEAP_SIZE=(16 * 1024)",
]

if (chip_enable_pw_rpc) {
Expand Down
2 changes: 1 addition & 1 deletion examples/lock-app/efr32/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ efr32_sdk("sdk") {
defines = [
"BOARD_ID=${efr32_board}",
"CHIP_DEVICE_CONFIG_USE_TEST_SETUP_PIN_CODE=${setupPinCode}",
"SL_HEAP_SIZE=(13 * 1024)",
"SL_HEAP_SIZE=(16 * 1024)",
]
}

Expand Down
2 changes: 1 addition & 1 deletion examples/pigweed-app/efr32/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ efr32_sdk("sdk") {
"HAL_VCOM_ENABLE=1",
"EFR32_LOG_ENABLED=1",
"PW_RPC_ENABLED",
"SL_HEAP_SIZE=(10 * 1024)",
"SL_HEAP_SIZE=(16 * 1024)",
]
}

Expand Down
2 changes: 1 addition & 1 deletion examples/shell/efr32/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ efr32_sdk("sdk") {

defines = [
"BOARD_ID=${efr32_board}",
"SL_HEAP_SIZE=(12 * 1024)",
"SL_HEAP_SIZE=(16 * 1024)",
"OPENTHREAD_CONFIG_CLI_TRANSPORT=OT_CLI_TRANSPORT_CONSOLE",
"ENABLE_CHIP_SHELL",
]
Expand Down
2 changes: 1 addition & 1 deletion examples/window-app/efr32/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ efr32_sdk("sdk") {
defines = [
"BOARD_ID=${efr32_board}",
"CHIP_DEVICE_CONFIG_USE_TEST_SETUP_PIN_CODE=${setupPinCode}",
"SL_HEAP_SIZE=(12 * 1024)",
"SL_HEAP_SIZE=(16 * 1024)",
]
}

Expand Down

0 comments on commit 9369d62

Please sign in to comment.