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.

i want to View Library file in CCS5.2.

Other Parts Discussed in Thread: TMS320F28335

hi ,

i am using CCS5.2 for my project i wanted to View a library file contents. Can any one help me out on this.

Regards ,

Sunil.H.S

  • Sunil,

    Can you be more specific because its not clear what exactly you want to do?

    Is it that you want to view the contents of a target library?  If so, the codegen tools provide a binary that will allow you to do this.

    For the C6000, family there is a ar6x.exe that allows you to extract the object files that was used to create the library.  Run "ar6x -x <library file>".

    Once you have the object files, you can run "dis6x.exe" to get the disassembly code.

    Does that answer your question?

    Judah

  • hi Judah,

    Thank You for the info,But i using C2000 series(TMS320f28335).

    and i Want to view the source code which is in form of *filename.lib(which is in Binary i guess, please correct me if i am Wrong).is it possible.?

    Regards,

    Sunil.H.S

  • Sunil,

    What I says still applies to the C2000 also but the binary would just be named slightly different.

    So instead of ar6x.exe it would be ar2000.exe and instead of dis6x.exe its dis2000.exe.

    But if you are asking to view the actual source files (The .c files that were use to create the .lib) that's impossible.  That's why people ship libs and not sources to protect their IP.

    Judah

  • Judah,

    Oh, thank You. This answers my question.

    Regards,

    Sunil