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.

SAFETI-HALCOGEN-CSP: running tests on HALCoGenTAU when there is user code

Part Number: SAFETI-HALCOGEN-CSP
Other Parts Discussed in Thread: HALCOGEN

I've added some calls to functions that exist within the user code section of the halcogen generated code. i.e.

void handlePLLLockFail(void)
{
/* USER CODE BEGIN (79) */
fault();
/* USER CODE END */

When using the TAU tool, I receive an error in the compile time from the linker. This makes sense because the TAU tool is only compiling HALCoGen generated files and the definition for fault() exists in a non TI file. Under my ccs project configuration this compiles fine because the makefile includes those source files. I see that the makefile generated by the TAU is statically defining which source files to use. I need to add on to that list to include some of my files such that that it will compiler correctly. How do I do that?