Skip to content

Commit

Permalink
[SYS] Detect IDF environnement with USE_ESP_IDF (#2074)
Browse files Browse the repository at this point in the history
Rather than USE_BLUFI only, as IDF can be used without BLUFI

Co-authored-by: Florian <[email protected]>
  • Loading branch information
1technophile and 1technophile authored Oct 1, 2024
1 parent 88e0909 commit 9e5f565
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main/ZgatewayBT.ino
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down

0 comments on commit 9e5f565

Please sign in to comment.