This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Part Number: MSP432P401M
Tool/software: Code Composer Studio
Hi Champion,
Do you know whether CCS have tool can monitor stack or RAM usage?
Thanks!
BR
Joe
Overall allocation of memory, including static variables and the stack region, can usually if not always be determined from the .map file produced as part of a project build.
For run-time stack space usage, you can usually just write a C function or even a C++ library to look for stack-region RAM that has been changed from zero (assuming it was all zeroed at power-up) and/or monitor the stack pointer.
**Attention** This is a public forum