Skip to content

Commit

Permalink
Increase stack size for task
Browse files Browse the repository at this point in the history
  • Loading branch information
netmindz committed Jan 6, 2024
1 parent 69bcd77 commit c656122
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sensor/src/sensor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -550,7 +550,7 @@ void setup() {
#endif

if(ARDUINO_RUNNING_CORE == 1) {
xTaskCreatePinnedToCore(backgroundTask, "backgroundTask", 2048, NULL, 1, NULL, ARDUINO_RUNNING_CORE);
xTaskCreatePinnedToCore(backgroundTask, "backgroundTask", 4048, NULL, 1, NULL, ARDUINO_RUNNING_CORE);
}

#ifdef ESP32
Expand Down

0 comments on commit c656122

Please sign in to comment.