Skip to content

Commit 4495659

Browse files
committed
Increase the memory for loop task
1 parent 3af1710 commit 4495659

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cores/esp32/main.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ void loopTask(void *pvParameters)
2222
extern "C" void app_main()
2323
{
2424
initArduino();
25-
xTaskCreatePinnedToCore(loopTask, "loopTask", 4096, NULL, 1, NULL, ARDUINO_RUNNING_CORE);
25+
xTaskCreatePinnedToCore(loopTask, "loopTask", 8192, NULL, 1, NULL, ARDUINO_RUNNING_CORE);
2626
}
2727

2828
#endif

0 commit comments

Comments
 (0)