Getting the tasks's stack start address out of the TCB, for debugging

the tasks’s stack start address (pxStack) is stored in the TCB.
I had several projects I worked on that I had a code (debugging code) which read its value.
Since this is something I encountered several times now, I was wondering if anyone else has encountered it and if its something that should be added (enabled by a define, similar to the water mark feature).

I think you can use vTaskGetInfo() for this - although the online documentation doesn’t show both stack limits in the TaskStatus_t structure, both appear in the structure as its implemented in the code.

Awesome.
Ill give it a try
Thanks