Skip to content

Commit

Permalink
fix stacksize in procBLETask
Browse files Browse the repository at this point in the history
add OVERRIDE_PROC_BLE_TASK_STACK_SIZE as value for custom stacksize in the procBLETask
  • Loading branch information
Lukaswnd authored Dec 17, 2024
1 parent 7fa00dd commit 535f380
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion main/ZgatewayBT.ino
Original file line number Diff line number Diff line change
Expand Up @@ -852,7 +852,9 @@ void setupBTTasksAndBLE() {
"procBLETask", /* Name of the task */
# if defined(USE_ESP_IDF) || defined(USE_BLUFI)
13500,
# else
# elif defined(OVERRIDE_PROC_BLE_TASK_STACK_SIZE)
OVERRIDE_PROC_BLE_TASK_STACK_SIZE,
# else
8500, /* Stack size in bytes */
# endif
NULL, /* Task input parameter */
Expand Down

0 comments on commit 535f380

Please sign in to comment.