Tool/software: Code Composer Studio
Where can I find information that describes what the *.pp text files in the CCS Debug folder mean?
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
Where can I find information that describes what the *.pp text files in the CCS Debug folder mean?
I think you mean the files produced with the option --preproc_dependency. The lines generated are make file dependencies. These lines tell make which include files the C source file uses. If one of these include files changes, then the C source file needs to be rebuilt.
CCS produces and uses these files in a way that is hidden from the user. The name of the file is the same as the source file. By default, the extension is .pp. In older versions of CCS, the extension .pp is used. But, when it started to cause some confusion, CCS changed to using the file extension .d.
Thanks and regards,
-George