From 9e5f56580d81f60fb32fe4cfac09689dd082f935 Mon Sep 17 00:00:00 2001 From: Florian Date: Tue, 1 Oct 2024 11:42:11 -0500 Subject: [PATCH] [SYS] Detect IDF environnement with USE_ESP_IDF (#2074) Rather than USE_BLUFI only, as IDF can be used without BLUFI Co-authored-by: Florian <1technophile@users.noreply.github.com> --- main/ZgatewayBT.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/ZgatewayBT.ino b/main/ZgatewayBT.ino index 306ee6d7..5e652318 100644 --- a/main/ZgatewayBT.ino +++ b/main/ZgatewayBT.ino @@ -851,7 +851,7 @@ void setupBTTasksAndBLE() { xTaskCreatePinnedToCore( procBLETask, /* Function to implement the task */ "procBLETask", /* Name of the task */ -# ifdef USE_BLUFI +# if defined(USE_ESP_IDF) || defined(USE_BLUFI) 12500, # else 8500, /* Stack size in bytes */