We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 301f93d commit b640900Copy full SHA for b640900
libraries/ESP32/examples/ArduinoStackSize/ArduinoStackSize.ino
@@ -15,10 +15,9 @@
15
In this example, you can verify it by changing or just commenting out SET_LOOP_TASK_STACK_SIZE();
16
*/
17
18
-#define ARDUINO_TASK_STACK_SIZE (16*1024) // 16KB
19
20
// This sets Arduino Stack Size - comment this line to use default 8K stack size
21
-SET_LOOP_TASK_STACK_SIZE(ARDUINO_TASK_STACK_SIZE);
+SET_LOOP_TASK_STACK_SIZE(16*1024); // 16KB
22
23
void setup() {
24
Serial.begin(115200);
0 commit comments