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.

CCS/TMDSIDK437X: How to check program size

Genius 5840 points
Part Number: TMDSIDK437X

Tool/software: Code Composer Studio

Hello,

Could you tell me how to confirm program size of CCS Project I'm developing?

Where should I check in .map file?

Regards,

U-SK

  • In CCS, try clicking on View | Memory Allocation.  If that doesn't solve the problem, consider using the command line utility sectti from the cg_xml package.

    Thanks and regards,

    -George

  • Hi George,

    Thank you for your reply.
    I confirmed Memory Allocation view, but it was not displayed properly.
    So I checked the link you sent, but I can't understand how to execute command.
    (The ofd6x command seems to be for C6000 and I don't know the command for AM437x. Where directory should I execute command? )

    Could you tell me procedure detail to execute command?

    Regards,
    U-SK
  • Instead of ofd6x, use the armofd command that comes the TI ARM compiler you use.  A command like this will do ...

    armofd -x file.out | sectti.exe

    Replace file.out with your executable file.  Find sectti.exe in the \bin directory of the cg_xml installation.

    Thanks and regards,

    -George