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.

Compiler: TI v18.12.3.LTS

Tool/software: TI C/C++ Compiler

hello, 

I am using TI compiler version 18.12.3.LTS to compile for F28377D, can you let me know how do i generate a symbol table from the code composer studio which should have complete global variable names with address (it should also mention members of a structure with address).

does code composer has such a option to generate the symbol table if not which file can provide me all the details

thanks,

Nagesh

  • Unfortunately, TI has no solution which exactly meets your request.  Here are some partial solutions to consider.

    The names utility nm2000 is documented in the C2000 assembly tools manual.  It dumps out symbol names and addresses.

    The disassembler dis2000 is documented in the same manual.  The option --all dumps out the data sections in addition to the code sections.

    The utility global_types_gen from the cg_xml package shows you the layout of all the structures in your program.

    Thanks and regards,

    -George