I'm a beginner in FreeRTOS (ARM CM3), my question is:
When you create a task with some local variables inside, where are store these variables in RAM, in the stack (used by the main()) like it's the case in general for the local variables, or in the stack dedicated for this task (create with xTaskCreate() function / usStackDepth parameter) ?
Best regards