From df466636483f9850414fcd1a34a44ac910268a00 Mon Sep 17 00:00:00 2001 From: Florian <1technophile@users.noreply.github.com> Date: Fri, 10 Jan 2025 13:32:02 -0600 Subject: [PATCH] [BT] Increase procBLEtask stack size to avoid reset when adapting the scan parameters --- main/ZgatewayBT.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main/ZgatewayBT.ino b/main/ZgatewayBT.ino index cb5578fd0f..71cb339b78 100644 --- a/main/ZgatewayBT.ino +++ b/main/ZgatewayBT.ino @@ -857,9 +857,9 @@ void setupBTTasksAndBLE() { procBLETask, /* Function to implement the task */ "procBLETask", /* Name of the task */ # if defined(USE_ESP_IDF) || defined(USE_BLUFI) - 13500, + 14000, # else - 8500, /* Stack size in bytes */ + 9000, /* Stack size in bytes */ # endif NULL, /* Task input parameter */ 2, /* Priority of the task (set higher than core task) */