I have a problem in the amout of memory allocated in my esp32
Basically i want use the Whole potentiality of my esp32 in particular the whole memory about 400k. I chosed ESP32 for this reason. I've tried it on the Raspberry PI Pico W and it works well but i want change platform because esp is cheaper.
The problem is that when I'm calling a function that calls other functions it gives me the error "***ERROR*** A stack overflow in task newloop has been detected."
I've investigated the reason and i putted in my program the follow code:
Code: Select all
void newloop(void* param) {
//MY CODE
}
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
xTaskCreateUniversal(newloop,"newloop", 32*1024, NULL, 1, NULL, ARDUINO_RUNNING_CORE);
vTaskDelete(NULL);
}
void loop() {}
I qant higllight that my code soes not user dynamic allocation and all variables and structures are allocated directly in the stack statically,
What i can do?