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 recently moved all of my projects from CCS4 to CCS5, and all of these projects are roughly the same number of LOC. In all cases, the CCS4 compilation time was ~30 seconds, and now on CCS5 it is ~3 minutes. I have experimented with different project creation schemes (copying into workspace or not), new project versus import, optimization levels, syntax checks, pre-processing options, and have made to real difference.
The one observation I have, which may help someone guide me, is in CCS5 the Console window states "Invoking: C2000 Compiler" for EVERY C file (~40 times). In CCS4, the compile was only invoked maybe 5 times -- and in both of these cases the build was a clean-build.
I believe the project settings between the CCS4 and CCS5 projects are the same. Any comments or suggestions will be appreciated.
jimj2713 said:I recently moved all of my projects from CCS4 to CCS5, and all of these projects are roughly the same number of LOC. In all cases, the CCS4 compilation time was ~30 seconds, and now on CCS5 it is ~3 minutes.
It would be helpful to have a few more details here.
1) What is the version of compiler tools being used in the 2 cases? You should be able to see the version by going into Project Properties->General->Advanced Settings->Compiler version
2) Can you compare the build output in the CCS console view for CCSv4 and CCSv5 and see if there is any difference at all in the options? It might even be helpful if you could copy and paste the outputs in both cases to a text file and attach it here.
jimj2713 said:The one observation I have, which may help someone guide me, is in CCS5 the Console window states "Invoking: C2000 Compiler" for EVERY C file (~40 times). In CCS4, the compile was only invoked maybe 5 times -- and in both of these cases the build was a clean-build.
This statement makes me wonder if you have the compiler option "--program_level_compile" (-pm) turned on in CCSv4 but not in CCSv5. Could you check if this may be the case?
3) If you look at the console view during the build, is there a particular place that it stalls for a long time in CCSv5, or is the build time just distributed among the ~40 source files?
The compiler versions -- in the CCS5 project: TI v6.0.2. In the CCS4 project: TI v6.0.1
Regarding compiler options, I have compared them, and while these are not identical, I have not found any significant speed improvements on the CCS5 side by changing any of these.
Here are the CCS4 compiler settings:
-v28 -ml -g -O3 --program_level_compile --define="_DEBUG" --define="LARGE_MODEL" --include_path="C:/CCStudio_v4.2/ccsv4/tools/compiler/c2000/include" --include_path="C:/CCStudio_v4.2/xdais_7_10_00_06/packages/ti/xdais" --diag_warning=225 --float_support=fpu32 --call_assumptions=0 --auto_inline=30 --c_src_interlist --asm_listing --asm_directory="C:/Software/UnifiedCCS4/Asm" --obj_directory="C:/Software/UnifiedCCS4/Debug" --list_directory="C:/Software/UnifiedCCS4/List"
And the CCS5 compiler settings:
-v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing
I did try --program_level_compile in the CCS5 project, and while it does speed up compilation, the application fails to link. Maybe this is the real problem? With --program_level_compile, CCS5 reports cannot find file assert.obj, which is of course locatable without --program_level_compile. I could not resolve this issue; why would program_level_compile affect linker file location?
Note to your last question, the compilation delays are evenly distributed amoung the files -- it just takes longer for each file in this CCS5 project.
Thanks.
The --program_level_compile option could very well contribute to the difference in compile time. It certainly does explain your earlier statement that in CCSv5, it invokes the compiler for every C file (~40 times) while in CCSv4, it was invoked about 5 times.
When program_level_compile is enabled, all the C source files are passed together to the compiler shell in one step and the compiler creates a single module out of all the C source files and then builds that module.
jimj2713 said:I did try --program_level_compile in the CCS5 project, and while it does speed up compilation, the application fails to link. Maybe this is the real problem? With --program_level_compile, CCS5 reports cannot find file assert.obj, which is of course locatable without --program_level_compile. I could not resolve this issue; why would program_level_compile affect linker file location?
This is interesting, but if we can get the link issue resolved I think you will see the speedup in build time. Do you have the --obj_directory option in your CCSv5 build as well? I don't see it in your snippet above, but if you do have that set, can you remove the directory specification (so it goes into the default location) and then clean and rebuild and see if that helps?
If it does not help, can you share your project so we can reproduce this link issue and look into it? That would be the quickest way to move forward. If you cannot share your project, can you copy and paste the full output from the CCS build console to a text file and attach it there? Also a screenshot of your Project Explorer view that shows all the expanded view of your project (so all source files are visible) would help. We'll try to see if we can figure out what is going on starting with that information.
I did not have the --obj_directory option set; it did not occur to me that those directory options would be relevant here -- it's funny that would have to be set, when the compiler itself is creating the object files it cannot find.I added the --obj_directory option, and it had no effect.
I would like to see if we can fix this without sharing the full source, so here is the compiler output. I don't know if this is important, but look at the "cannot find" error statement near the end: "C:\\Users\\DCABAL~1\\AppData\\Local\\Temp\\079363", line 23: error: cannot find file "./ASSERT.obj" -- is it possible it is "./Assert.obj" is relative to ""C:\\Users\\DCABAL~1\\AppData\\Local\\Temp\\079363"?
Another observation: in the top-program-level compilation statement, assert.c is near the end of the list -- could this be a compilation-order issue?
Lastly, near the end of this console-output, there is a statement "Finished building: ASSERT.obj", and that is the only obj mentioned -- what is that?
I also attached the console output of a good (but slow) compilation of this same project, if that helps.
Thanks again.
**** Build of configuration Debug for project Unified **** C:\CCStudio_v5\ccsv5\utils\bin\gmake all 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --program_level_compile --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --obj_directory="C:/Software/Unified/Debug" "../24FC128.c" "../AD9835.c" "../AE_IO.c" "../Bit.c" "../Buffer.c" "../CAN.c" "../Constants.c" "../Control.c" "../Customer.c" "../DSP2833x_Adc.c" "../DSP2833x_CpuTimers.c" "../DSP2833x_DMA.c" "../DSP2833x_DefaultIsr.c" "../DSP2833x_ECan.c" "../DSP2833x_ECap.c" "../DSP2833x_EPwm.c" "../DSP2833x_EQep.c" "../DSP2833x_GlobalVariableDefs.c" "../DSP2833x_Gpio.c" "../DSP2833x_I2C.c" "../DSP2833x_Mcbsp.c" "../DSP2833x_MemCopy.c" "../DSP2833x_PieCtrl.c" "../DSP2833x_PieVect.c" "../DSP2833x_Sci.c" "../DSP2833x_Spi.c" "../DSP2833x_SysCtrl.c" "../DSP2833x_Xintf.c" "../Error.c" "../Filter.c" "../FluxReg.c" "../HS_Loop.c" "../Hall.c" "../HiDS.c" "../HiDSMenu.c" "../I2T.c" "../IO.c" "../Induction.c" "../Inrush.c" "../LED.c" "../LS_Loop.c" "../LTC2629.c" "../ManualFeedback.c" "../Overcurrent.c" "../PCA9539.c" "../PidReg.c" "../Power.c" "../RFFT_f32_sincostable_IQ.c" "../RamTest.c" "../Regen.c" "../Resolver.c" "../SelfTest.c" "../Sensorless.c" "../System.c" "../TestPoint.c" "../TestScripts.c" "../Torque.c" "../Utility.c" "../VersionNotes.c" "../Watchdog.c" "../main.c" "../smopos.c" "../terminal.c" "../ASSERT.C" "../DSP2833x_ADC_cal.asm" "../DSP2833x_CSMPasswords.asm" "../DSP2833x_CodeStartBranch.asm" "../DSP2833x_DBGIER.asm" "../DSP2833x_DisInt.asm" "../DSP2833x_usDelay.asm" "../Mac80Iterations.asm" "../RFFT_f32.asm" "../RFFT_f32_mag.asm" "../RFFT_f32_phase.asm" "../RFFT_f32_sincostable_IQ.asm" "../RFFT_f32u.asm" "../atan2_f32.asm" "../atan_f32.asm" "../cos_f32.asm" "../div_f32.asm" "../sin_f32.asm" "../sin_pu_f32.asm" "../sqrt_f32.asm" "../FPUmathTables.ASM" [24FC128.c] [AD9835.c] [AE_IO.c] [Bit.c] [Buffer.c] [CAN.c] [Constants.c] [Control.c] [Customer.c] [DSP2833x_Adc.c] [DSP2833x_CpuTimers.c] [DSP2833x_DMA.c] [DSP2833x_DefaultIsr.c] [DSP2833x_ECan.c] [DSP2833x_ECap.c] [DSP2833x_EPwm.c] [DSP2833x_EQep.c] [DSP2833x_GlobalVariableDefs.c] [DSP2833x_Gpio.c] [DSP2833x_I2C.c] [DSP2833x_Mcbsp.c] [DSP2833x_MemCopy.c] [DSP2833x_PieCtrl.c] [DSP2833x_PieVect.c] [DSP2833x_Sci.c] [DSP2833x_Spi.c] [DSP2833x_SysCtrl.c] [DSP2833x_Xintf.c] [Error.c] [Filter.c] [FluxReg.c] [HS_Loop.c] [Hall.c] [HiDS.c] [HiDSMenu.c] [I2T.c] [IO.c] [Induction.c] [Inrush.c] [LED.c] [LS_Loop.c] [LTC2629.c] [ManualFeedback.c] [Overcurrent.c] [PCA9539.c] [PidReg.c] [Power.c] [RFFT_f32_sincostable_IQ.c] [RamTest.c] "../RamTest.c", line 138: warning: conversion from pointer to smaller integer "../RamTest.c", line 164: warning: conversion from pointer to smaller integer [Regen.c] [Resolver.c] [SelfTest.c] [Sensorless.c] [System.c] [TestPoint.c] [TestScripts.c] [Torque.c] [Utility.c] "../Utility.c", line 456: warning: conversion from pointer to smaller integer [VersionNotes.c] [Watchdog.c] [main.c] [smopos.c] [terminal.c] [ASSERT.C] <Optimizing> <Generating> <Interlisting> <Assembling> [DSP2833x_ADC_cal.asm] [DSP2833x_CSMPasswords.asm] [DSP2833x_CodeStartBranch.asm] [DSP2833x_DBGIER.asm] [DSP2833x_DisInt.asm] [DSP2833x_usDelay.asm] [Mac80Iterations.asm] [RFFT_f32.asm] [RFFT_f32_mag.asm] [RFFT_f32_phase.asm] [RFFT_f32_sincostable_IQ.asm] [RFFT_f32u.asm] [atan2_f32.asm] [atan_f32.asm] [cos_f32.asm] [div_f32.asm] [sin_f32.asm] [sin_pu_f32.asm] [sqrt_f32.asm] [FPUmathTables.ASM] 'Finished building: ASSERT.obj' ' ' 'Building target: Unified.out' 'Invoking: C2000 Linker' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --program_level_compile --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --obj_directory="C:/Software/Unified/Debug" -z -m"Unified.map" --stack_size=1712 --heap_size=0x400 --warn_sections -i"C:/CCStudio_v5/ccsv5/tools/compiler/c2000/lib" -i"C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" -i"C:/Software/Unified" --reread_libs --entry_point=code_start --rom_model -o "Unified.out" "./div_f32.obj" "./cos_f32.obj" "../28335_FLASH_lnk.cmd" "../DSP2833x_Headers_nonBIOS.cmd" "./atan2_f32.obj" "./atan_f32.obj" "./sin_pu_f32.obj" "./sqrt_f32.obj" "./sin_f32.obj" "../rts2800_fpu32.lib" "./ASSERT.obj" "./DSP2833x_ADC_cal.obj" "./DSP2833x_CSMPasswords.obj" "./DSP2833x_CodeStartBranch.obj" "./DSP2833x_DBGIER.obj" "./DSP2833x_DisInt.obj" "./DSP2833x_usDelay.obj" "./Mac80Iterations.obj" "./RFFT_f32.obj" "./RFFT_f32_mag.obj" "./RFFT_f32_phase.obj" "./RFFT_f32_sincostable_IQ.obj" "./RFFT_f32u.obj" "./FPUmathTables.obj" <Linking> "C:\\Users\\DCABAL~1\\AppData\\Local\\Temp\\079363", line 23: error: cannot find file "./ASSERT.obj" undefined first referenced symbol in file --------- ---------------- _main ../rts2800_fpu32.lib<args_main.obj> error: unresolved symbols remain warning: entry-point symbol other than "_c_int00" specified: "code_start" error: errors encountered during linking; "Unified.out" not built gmake: *** [Unified.out] Error 1 >> Compilation failure **** Build Finished ****
**** Build of configuration Debug for project Unified **** C:\CCStudio_v5\ccsv5\utils\bin\gmake all subdir_rules.mk:427: warning: overriding commands for target `RFFT_f32_sincostable_IQ.obj' subdir_rules.mk:420: warning: ignoring old commands for target `RFFT_f32_sincostable_IQ.obj' 'Building file: ../24FC128.c' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="24FC128.pp" "../24FC128.c" 'Finished building: ../24FC128.c' ' ' 'Building file: ../AD9835.c' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="AD9835.pp" "../AD9835.c" 'Finished building: ../AD9835.c' ' ' 'Building file: ../AE_IO.c' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="AE_IO.pp" "../AE_IO.c" 'Finished building: ../AE_IO.c' ' ' 'Building file: ../ASSERT.C' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="ASSERT.pp" "../ASSERT.C" 'Finished building: ../ASSERT.C' ' ' 'Building file: ../Bit.c' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="Bit.pp" "../Bit.c" 'Finished building: ../Bit.c' ' ' 'Building file: ../Buffer.c' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="Buffer.pp" "../Buffer.c" 'Finished building: ../Buffer.c' ' ' 'Building file: ../CAN.c' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="CAN.pp" "../CAN.c" 'Finished building: ../CAN.c' ' ' 'Building file: ../Constants.c' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="Constants.pp" "../Constants.c" 'Finished building: ../Constants.c' ' ' 'Building file: ../Control.c' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="Control.pp" "../Control.c" 'Finished building: ../Control.c' ' ' 'Building file: ../Customer.c' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="Customer.pp" "../Customer.c" 'Finished building: ../Customer.c' ' ' 'Building file: ../DSP2833x_ADC_cal.asm' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="DSP2833x_ADC_cal.pp" "../DSP2833x_ADC_cal.asm" 'Finished building: ../DSP2833x_ADC_cal.asm' ' ' 'Building file: ../DSP2833x_Adc.c' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="DSP2833x_Adc.pp" "../DSP2833x_Adc.c" 'Finished building: ../DSP2833x_Adc.c' ' ' 'Building file: ../DSP2833x_CSMPasswords.asm' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="DSP2833x_CSMPasswords.pp" "../DSP2833x_CSMPasswords.asm" 'Finished building: ../DSP2833x_CSMPasswords.asm' ' ' 'Building file: ../DSP2833x_CodeStartBranch.asm' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="DSP2833x_CodeStartBranch.pp" "../DSP2833x_CodeStartBranch.asm" 'Finished building: ../DSP2833x_CodeStartBranch.asm' ' ' 'Building file: ../DSP2833x_CpuTimers.c' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="DSP2833x_CpuTimers.pp" "../DSP2833x_CpuTimers.c" 'Finished building: ../DSP2833x_CpuTimers.c' ' ' 'Building file: ../DSP2833x_DBGIER.asm' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="DSP2833x_DBGIER.pp" "../DSP2833x_DBGIER.asm" 'Finished building: ../DSP2833x_DBGIER.asm' ' ' 'Building file: ../DSP2833x_DMA.c' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="DSP2833x_DMA.pp" "../DSP2833x_DMA.c" 'Finished building: ../DSP2833x_DMA.c' ' ' 'Building file: ../DSP2833x_DefaultIsr.c' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="DSP2833x_DefaultIsr.pp" "../DSP2833x_DefaultIsr.c" 'Finished building: ../DSP2833x_DefaultIsr.c' ' ' 'Building file: ../DSP2833x_DisInt.asm' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="DSP2833x_DisInt.pp" "../DSP2833x_DisInt.asm" 'Finished building: ../DSP2833x_DisInt.asm' ' ' 'Building file: ../DSP2833x_ECan.c' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="DSP2833x_ECan.pp" "../DSP2833x_ECan.c" 'Finished building: ../DSP2833x_ECan.c' ' ' 'Building file: ../DSP2833x_ECap.c' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="DSP2833x_ECap.pp" "../DSP2833x_ECap.c" 'Finished building: ../DSP2833x_ECap.c' ' ' 'Building file: ../DSP2833x_EPwm.c' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="DSP2833x_EPwm.pp" "../DSP2833x_EPwm.c" 'Finished building: ../DSP2833x_EPwm.c' ' ' 'Building file: ../DSP2833x_EQep.c' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="DSP2833x_EQep.pp" "../DSP2833x_EQep.c" 'Finished building: ../DSP2833x_EQep.c' ' ' 'Building file: ../DSP2833x_GlobalVariableDefs.c' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="DSP2833x_GlobalVariableDefs.pp" "../DSP2833x_GlobalVariableDefs.c" 'Finished building: ../DSP2833x_GlobalVariableDefs.c' ' ' 'Building file: ../DSP2833x_Gpio.c' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="DSP2833x_Gpio.pp" "../DSP2833x_Gpio.c" 'Finished building: ../DSP2833x_Gpio.c' ' ' 'Building file: ../DSP2833x_I2C.c' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="DSP2833x_I2C.pp" "../DSP2833x_I2C.c" 'Finished building: ../DSP2833x_I2C.c' ' ' 'Building file: ../DSP2833x_Mcbsp.c' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="DSP2833x_Mcbsp.pp" "../DSP2833x_Mcbsp.c" 'Finished building: ../DSP2833x_Mcbsp.c' ' ' 'Building file: ../DSP2833x_MemCopy.c' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="DSP2833x_MemCopy.pp" "../DSP2833x_MemCopy.c" 'Finished building: ../DSP2833x_MemCopy.c' ' ' 'Building file: ../DSP2833x_PieCtrl.c' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="DSP2833x_PieCtrl.pp" "../DSP2833x_PieCtrl.c" 'Finished building: ../DSP2833x_PieCtrl.c' ' ' 'Building file: ../DSP2833x_PieVect.c' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="DSP2833x_PieVect.pp" "../DSP2833x_PieVect.c" 'Finished building: ../DSP2833x_PieVect.c' ' ' 'Building file: ../DSP2833x_Sci.c' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="DSP2833x_Sci.pp" "../DSP2833x_Sci.c" 'Finished building: ../DSP2833x_Sci.c' ' ' 'Building file: ../DSP2833x_Spi.c' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="DSP2833x_Spi.pp" "../DSP2833x_Spi.c" 'Finished building: ../DSP2833x_Spi.c' ' ' 'Building file: ../DSP2833x_SysCtrl.c' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="DSP2833x_SysCtrl.pp" "../DSP2833x_SysCtrl.c" 'Finished building: ../DSP2833x_SysCtrl.c' ' ' 'Building file: ../DSP2833x_Xintf.c' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="DSP2833x_Xintf.pp" "../DSP2833x_Xintf.c" 'Finished building: ../DSP2833x_Xintf.c' ' ' 'Building file: ../DSP2833x_usDelay.asm' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="DSP2833x_usDelay.pp" "../DSP2833x_usDelay.asm" 'Finished building: ../DSP2833x_usDelay.asm' ' ' 'Building file: ../Error.c' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="Error.pp" "../Error.c" 'Finished building: ../Error.c' ' ' 'Building file: ../FPUmathTables.ASM' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="FPUmathTables.pp" "../FPUmathTables.ASM" 'Finished building: ../FPUmathTables.ASM' ' ' 'Building file: ../Filter.c' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="Filter.pp" "../Filter.c" 'Finished building: ../Filter.c' ' ' 'Building file: ../FluxReg.c' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="FluxReg.pp" "../FluxReg.c" 'Finished building: ../FluxReg.c' ' ' 'Building file: ../HS_Loop.c' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="HS_Loop.pp" "../HS_Loop.c" 'Finished building: ../HS_Loop.c' ' ' 'Building file: ../Hall.c' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="Hall.pp" "../Hall.c" 'Finished building: ../Hall.c' ' ' 'Building file: ../HiDS.c' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="HiDS.pp" "../HiDS.c" 'Finished building: ../HiDS.c' ' ' 'Building file: ../HiDSMenu.c' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="HiDSMenu.pp" "../HiDSMenu.c" 'Finished building: ../HiDSMenu.c' ' ' 'Building file: ../I2T.c' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="I2T.pp" "../I2T.c" 'Finished building: ../I2T.c' ' ' 'Building file: ../IO.c' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="IO.pp" "../IO.c" 'Finished building: ../IO.c' ' ' 'Building file: ../Induction.c' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="Induction.pp" "../Induction.c" 'Finished building: ../Induction.c' ' ' 'Building file: ../Inrush.c' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="Inrush.pp" "../Inrush.c" 'Finished building: ../Inrush.c' ' ' 'Building file: ../LED.c' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="LED.pp" "../LED.c" 'Finished building: ../LED.c' ' ' 'Building file: ../LS_Loop.c' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="LS_Loop.pp" "../LS_Loop.c" 'Finished building: ../LS_Loop.c' ' ' 'Building file: ../LTC2629.c' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="LTC2629.pp" "../LTC2629.c" 'Finished building: ../LTC2629.c' ' ' 'Building file: ../Mac80Iterations.asm' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="Mac80Iterations.pp" "../Mac80Iterations.asm" 'Finished building: ../Mac80Iterations.asm' ' ' 'Building file: ../ManualFeedback.c' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="ManualFeedback.pp" "../ManualFeedback.c" 'Finished building: ../ManualFeedback.c' ' ' 'Building file: ../Overcurrent.c' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="Overcurrent.pp" "../Overcurrent.c" 'Finished building: ../Overcurrent.c' ' ' 'Building file: ../PCA9539.c' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="PCA9539.pp" "../PCA9539.c" 'Finished building: ../PCA9539.c' ' ' 'Building file: ../PidReg.c' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="PidReg.pp" "../PidReg.c" 'Finished building: ../PidReg.c' ' ' 'Building file: ../Power.c' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="Power.pp" "../Power.c" 'Finished building: ../Power.c' ' ' 'Building file: ../RFFT_f32.asm' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="RFFT_f32.pp" "../RFFT_f32.asm" 'Finished building: ../RFFT_f32.asm' ' ' 'Building file: ../RFFT_f32_mag.asm' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="RFFT_f32_mag.pp" "../RFFT_f32_mag.asm" 'Finished building: ../RFFT_f32_mag.asm' ' ' 'Building file: ../RFFT_f32_phase.asm' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="RFFT_f32_phase.pp" "../RFFT_f32_phase.asm" 'Finished building: ../RFFT_f32_phase.asm' ' ' 'Building file: ../RFFT_f32_sincostable_IQ.c' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="RFFT_f32_sincostable_IQ.pp" "../RFFT_f32_sincostable_IQ.c" 'Finished building: ../RFFT_f32_sincostable_IQ.c' ' ' 'Building file: ../RFFT_f32u.asm' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="RFFT_f32u.pp" "../RFFT_f32u.asm" 'Finished building: ../RFFT_f32u.asm' ' ' 'Building file: ../RamTest.c' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="RamTest.pp" "../RamTest.c" "../RamTest.c", line 138: warning: conversion from pointer to smaller integer "../RamTest.c", line 164: warning: conversion from pointer to smaller integer 'Finished building: ../RamTest.c' ' ' 'Building file: ../Regen.c' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="Regen.pp" "../Regen.c" 'Finished building: ../Regen.c' ' ' 'Building file: ../Resolver.c' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="Resolver.pp" "../Resolver.c" 'Finished building: ../Resolver.c' ' ' 'Building file: ../SelfTest.c' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="SelfTest.pp" "../SelfTest.c" 'Finished building: ../SelfTest.c' ' ' 'Building file: ../Sensorless.c' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="Sensorless.pp" "../Sensorless.c" 'Finished building: ../Sensorless.c' ' ' 'Building file: ../System.c' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="System.pp" "../System.c" 'Finished building: ../System.c' ' ' 'Building file: ../TestPoint.c' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="TestPoint.pp" "../TestPoint.c" 'Finished building: ../TestPoint.c' ' ' 'Building file: ../TestScripts.c' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="TestScripts.pp" "../TestScripts.c" 'Finished building: ../TestScripts.c' ' ' 'Building file: ../Torque.c' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="Torque.pp" "../Torque.c" 'Finished building: ../Torque.c' ' ' 'Building file: ../Utility.c' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="Utility.pp" "../Utility.c" "../Utility.c", line 456: warning: conversion from pointer to smaller integer 'Finished building: ../Utility.c' ' ' 'Building file: ../VersionNotes.c' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="VersionNotes.pp" "../VersionNotes.c" 'Finished building: ../VersionNotes.c' ' ' 'Building file: ../Watchdog.c' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="Watchdog.pp" "../Watchdog.c" 'Finished building: ../Watchdog.c' ' ' 'Building file: ../atan2_f32.asm' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="atan2_f32.pp" "../atan2_f32.asm" 'Finished building: ../atan2_f32.asm' ' ' 'Building file: ../atan_f32.asm' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="atan_f32.pp" "../atan_f32.asm" 'Finished building: ../atan_f32.asm' ' ' 'Building file: ../cos_f32.asm' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="cos_f32.pp" "../cos_f32.asm" 'Finished building: ../cos_f32.asm' ' ' 'Building file: ../div_f32.asm' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="div_f32.pp" "../div_f32.asm" 'Finished building: ../div_f32.asm' ' ' 'Building file: ../main.c' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="main.pp" "../main.c" 'Finished building: ../main.c' ' ' 'Building file: ../sin_f32.asm' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="sin_f32.pp" "../sin_f32.asm" 'Finished building: ../sin_f32.asm' ' ' 'Building file: ../sin_pu_f32.asm' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="sin_pu_f32.pp" "../sin_pu_f32.asm" 'Finished building: ../sin_pu_f32.asm' ' ' 'Building file: ../smopos.c' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="smopos.pp" "../smopos.c" 'Finished building: ../smopos.c' ' ' 'Building file: ../sqrt_f32.asm' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="sqrt_f32.pp" "../sqrt_f32.asm" 'Finished building: ../sqrt_f32.asm' ' ' 'Building file: ../terminal.c' 'Invoking: C2000 Compiler' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --include_path="C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing --preproc_with_compile --preproc_dependency="terminal.pp" "../terminal.c" 'Finished building: ../terminal.c' ' ' 'Building target: Unified.out' 'Invoking: C2000 Linker' "C:/CCStudio_v5/ccsv5/tools/compiler/c2000/bin/cl2000" -v28 -ml --float_support=fpu32 -O3 -g --define=_DEBUG --define=LARGE_MODEL --diag_warning=225 --call_assumptions=0 --c_src_interlist --asm_listing -z -m"Unified.map" --stack_size=1712 --heap_size=0x400 --warn_sections -i"C:/CCStudio_v5/ccsv5/tools/compiler/c2000/lib" -i"C:/CCStudio_v5/ccsv5/tools/compiler/c2000/include" -i"C:/Software/Unified" --reread_libs --entry_point=code_start --rom_model -o "Unified.out" "./div_f32.obj" "./cos_f32.obj" "../28335_FLASH_lnk.cmd" "../DSP2833x_Headers_nonBIOS.cmd" "./atan2_f32.obj" "./atan_f32.obj" "./sin_pu_f32.obj" "./sqrt_f32.obj" "./sin_f32.obj" "../rts2800_fpu32.lib" "./terminal.obj" "./smopos.obj" "./main.obj" "./Watchdog.obj" "./VersionNotes.obj" "./Utility.obj" "./Torque.obj" "./TestScripts.obj" "./TestPoint.obj" "./System.obj" "./Sensorless.obj" "./SelfTest.obj" "./Resolver.obj" "./Regen.obj" "./RamTest.obj" "./RFFT_f32u.obj" "./RFFT_f32_sincostable_IQ.obj" "./RFFT_f32_phase.obj" "./RFFT_f32_mag.obj" "./RFFT_f32.obj" "./Power.obj" "./PidReg.obj" "./PCA9539.obj" "./Overcurrent.obj" "./ManualFeedback.obj" "./Mac80Iterations.obj" "./LTC2629.obj" "./LS_Loop.obj" "./LED.obj" "./Inrush.obj" "./Induction.obj" "./IO.obj" "./I2T.obj" "./HiDSMenu.obj" "./HiDS.obj" "./Hall.obj" "./HS_Loop.obj" "./FluxReg.obj" "./Filter.obj" "./FPUmathTables.obj" "./Error.obj" "./DSP2833x_usDelay.obj" "./DSP2833x_Xintf.obj" "./DSP2833x_SysCtrl.obj" "./DSP2833x_Spi.obj" "./DSP2833x_Sci.obj" "./DSP2833x_PieVect.obj" "./DSP2833x_PieCtrl.obj" "./DSP2833x_MemCopy.obj" "./DSP2833x_Mcbsp.obj" "./DSP2833x_I2C.obj" "./DSP2833x_Gpio.obj" "./DSP2833x_GlobalVariableDefs.obj" "./DSP2833x_EQep.obj" "./DSP2833x_EPwm.obj" "./DSP2833x_ECap.obj" "./DSP2833x_ECan.obj" "./DSP2833x_DisInt.obj" "./DSP2833x_DefaultIsr.obj" "./DSP2833x_DMA.obj" "./DSP2833x_DBGIER.obj" "./DSP2833x_CpuTimers.obj" "./DSP2833x_CodeStartBranch.obj" "./DSP2833x_CSMPasswords.obj" "./DSP2833x_Adc.obj" "./DSP2833x_ADC_cal.obj" "./Customer.obj" "./Control.obj" "./Constants.obj" "./CAN.obj" "./Buffer.obj" "./Bit.obj" "./ASSERT.obj" "./AE_IO.obj" "./AD9835.obj" "./24FC128.obj" <Linking> warning: entry-point symbol other than "_c_int00" specified: "code_start" 'Finished building target: Unified.out' ' ' **** Build Finished ****
It looks like CCS is having trouble with the file name ASSERT.C, specifically the extension being in upper case (.C). If you look at the build command, you can see that it is expecting ./ASSERT.obj in the link step, when actually there is probably no ASSERT.obj created in the \Debug folder, but rather a differently named .obj. When compiling with --program_level_compile, there will only be one .obj generated for all C source files combined, since all the C source files are combined into one module and then compiled. CCS 5.1.x seems to have trouble with the .C extension. Try renaming the file to ASSERT.c and see if the build completes. I did a simple test and this workaround helped.
Also I tried with CCS 5.2 and it was able to handle ASSERT.C fine. So another option might be for you to update to CCS 5.2. You can either update from within CCS5.1 by going to Help->Check for Updates, or you can download and install CCS 5.2.0 in a separate folder.
Please let us know how it goes.