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.
Tool/software: Code Composer Studio
Hello, everyone.
I'm Tommy Gwon.
I wonder that how can I check all of the struct members address on map file?
I can check &operator on the firmware code before compile.
However, I want to check all of the struct members addresses after compile.
Typically, I can check struct start address from a map file, but I want all of the struct members addresses.
I'm not sure, Code Composer Studio is not supplied that function.
Please, let me know that information who know that.
Please, help me!!
Thanks a lot.
Unfortunately, TI has no utility, or a similar solution, which shows the addresses of the members of each structure variable. The closest solution is the utility global_types_gen from the cg_xml package. It shows the layout of each structure type, not variable, in the program. That, plus the base address of each structure variable from the map file, forms a partial solution.
Thanks and regards,
-George