Run ESP32 WORM without freertos
Posted: Sun Sep 24, 2023 11:29 am
Is freertos necessary to run a program with ESP32? Is it necessary or optional? Why this question?
Because
- I need to develop a single thread application first
- I need to optimize the ram since I need to write an alghoritm that use a lot of ram
- I found that FreeRTOS are not able to offer me the possibilità to use all the ram for a single thread. Basucally it go in stack overflow because i think that rtos give me limited ability yo user the ram and my program dos not run properly
What i want then is to run a simple int main(){} program mono tasking. Is it possible? If yes how i can do that?
Thanks
Because
- I need to develop a single thread application first
- I need to optimize the ram since I need to write an alghoritm that use a lot of ram
- I found that FreeRTOS are not able to offer me the possibilità to use all the ram for a single thread. Basucally it go in stack overflow because i think that rtos give me limited ability yo user the ram and my program dos not run properly
What i want then is to run a simple int main(){} program mono tasking. Is it possible? If yes how i can do that?
Thanks