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.

UCD3138: how to get a full picture of all the functions in a UCD3138 CCS projects

Part Number: UCD3138

we use CCS to code UCD3138 projects.  a question is: we want to get a full picture of all the functions in the project, then can we see the relations between these functions easily(like a function will be called by any other functions and so on). is there a tool can do this? thanks!

  • I'm not aware of a tool like that for CCS.  The structure of the functions is really pretty straight forward.  There are several categories of functions:

    Initialization codes - called from main.c at startup

    Background loop - called from main.c while running

    PMBus commands - called from background loop

    Standard interrupt - called from standard interrupt

    Fast interrupt - called from fast interrupt.

    It's not really that hard to figure out the calling sequence of the functions.  

    CCS 6 offers functions where you can right click on any function name and find the function declaration and all the places it's called from.