Maximal Task Stack Size

Hy, my actual project needs to use more than 255kB of heap. That heap can be found in my external SRAM. For using it I have to set the Task Stack Size of the RTOS to that huge Value. Now I want to know if FreeRTOS hasproblems with huge task stacks or is there any limitation of task stack? Or is it just my external memmory which limitates me? Daniel

Maximal Task Stack Size

Hy, my actual project needs to use more than 255kB of heap. That heap can be found in my external SRAM. For using it I have to set the Task Stack Size of the RTOS to that huge Value
Why? Task stacks are allocated from the FreeRTOS heap, so if the 255kB heap in the external RAM is being used as the FreeRTOS heap (if pvPortMalloc() allocates RAM from there), then creating a task with a stack that size will use all the heap, and further calls to pvPortMalloc() will fail. Normally heap usage is separate from stack usage. Maybe you are right, but from your comment, there is no hint as to why you need to use all the heap as stack, leaving no heap.
Now I want to know if FreeRTOS hasproblems with huge task stacks or is there any limitation of task stack?
The stack size parameter in xTaskCreate() is unsigned short, so 0xffff is the largest stack. If you want to make it bigger, then change the data type in the function parameter.