6.3.6.3 Call Graph Graphs
Following the call tables are the call graphs, which show the full call
tree for main()
and any interrupt functions. This is a subset of the
information presented in the call tables, and it is shown in a different form. The call
graphs will look similar to the one shown below.
CALL GRAPH GRAPHS
Indentation is used to indicate the call depth. In the diagram, you can
see that main()
calls aOut()
, which in turn calls
GetDACValue()
, which in turn calls the library function
__ftadd()
, etc. If a star (*
) appears next to the
function’s name, this implies that the function has been called indirectly via a
pointer.