I need help figuring out how to get call stack debug information from CCS5.
I am developing an embedded app on a DM642 processor with DSP/BIOS 5. It is a large application and has several libraries. At one point in its execution the app seems to freeze; however when I pause execution, it seems to be in the midst of a ridiculously large memcpy command. I suspect, at least, the memcpy size argument has been improperly dereferenced (size being an address instead of a value) or corrupted (I have tried adjusting stack and heap sizes to no avail).
My problem is that I can’t find the offending statement. When I pause, it just shows I am in the memcpy function with limited debug information (specifically nothing to show me what called it).
I suspect the memcpy is called internal to one of my third party libraries that was compiled without debug.
Is there a way to get call stack information (directly or indirectly) from CCS5 when I pause app execution in a library that has not been compiled with debug?

