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.
Hello,
Is there, in Code Composer Studio, any option to show (for example in compilation output console) footprint size information (text, data, bss...)?
I am aware of .map information and memory allocation view. But I am looking for something more practical which shows me commented information in just 1 line for example at the end of compilation output console (just like other eclipse-based IDEs do).
Thanks in advance!
Best regards,
Adria
It's not exactly what you are looking for but you have a visual output available under menu View/Memory Allocation
CCS only provides the raw information in the .map and _linkinfo.xml files. The memory allocation view can show a high level summary or details depending on how it is expanded. There is no single line summary available. Unfortunately on F28379D there are so many memory blocks defined that the memory allocation view becomes a massive table. On other devices with different layouts it is much more concise:
F28379D view:
MSP432E View (top level)
Expanded 1 more level:
On MSP430 we do something in the loader for a high level summary:
MSP430: Flash/FRAM usage is 108 bytes. RAM usage is 80 bytes.
However even that is not what you are looking for.
Regards,
John