Framework = arduino, espidf ESP32-S3 xTaskCreate() crashes

Hello Max,
Well yes, of course… silly me to assume that examples should actually work with the chips listed as supported… especially with such a minimal program, I was surprised to see a stack overflow 8^(

I believe the configMINIMAL_STACK_SIZE is just simply too small for the ESP32-S3.

I triangulated on a value that works…an additional 380 words of stack.

xTaskCreate(&arduinoTask, "arduino_task", configMINIMAL_STACK_SIZE + 380, NULL, 5, NULL);

Thanks Max for helping me with the “obvious”.

I submitted an issue to https://github.com/platformio/platform-espressif32/issues/1190 as configMINIMAL_STACK_SIZE appears inadequate for ESP32-S3 in examples #1190

Pete