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
I build the program in CCS, and then the above errors are shown.
Could you help solve these issues?
The link to your screenshot is broken. Can you repost?
If you continue to have issues with broken links, please see the below faq:
https://e2e.ti.com/support/tools/ccs/f/81/t/821597
Thanks
ki
This is a common build error. The compiler was unable to find the specified header file. The common cause for this is because the compiler include search path list is missing the path to the header file.
For more information on the error, and suggestions on how to resolve, please see the below link:
Thanks
ki
The issue is as the following: gmake: *** No rule to make target 'C:/Users/aamrhein/Desktop/Andy VBL Test Code Rev3/Rev C_VBL_master_code/F28075 examples/F2807x_headers/cmd/F2807x_Headers_nonBIOS.cmd', needed by 'VBL_project120v_UI.out'.
Can you provide ALL the build output in the build console? You can copy & paste to a text file and then attach the text file to this thread.
Thanks
ki
Thanks.
The main error I see are related to:
"C:/Users/Administrator/workspace_v9/Vollrath code/F28075 examples/F2807x_headers/cmd/F2807x_Headers_nonBIOS.cmd", line 8: error #10263:
ADCA_RESULT memory range has already been specified
This is likely caused because you have multiple linker command files, of which they have information that conflict with each other.
I can see that you have 3:
Building target: "VBL_project120v_UI.out"
Invoking: C2000 Linker
"C:/CCS9/Install/Yong/ccs/tools/compiler/ti-cgt-c2000_18.12.4.LTS/bin/cl2000" -v28 -ml -mt --cla_support=cla1 --float_support=fpu32 --tmu_support=tmu0 --advice:performance=all --define=CPU1 -g --diag_suppress=1311 --diag_warning=225 --display_error_number --abi=coffabi -z -m"VBL_project120v_UI.map" --stack_size=0x100 --warn_sections -i"C:/CCS9/Install/Yong/ccs/tools/compiler/ti-cgt-c2000_18.12.4.LTS/lib" -i"C:/Users/Administrator/workspace_v9/Vollrath code/F28075 examples/F2807x_common/cmd" -i"C:/Users/Administrator/workspace_v9/Vollrath code/F28075 examples/F2807x_headers/cmd" -i"C:/CCS9/Install/Yong/ccs/tools/compiler/ti-cgt-c2000_18.12.4.LTS/include" --priority --reread_libs --display_error_number --xml_link_info="VBL_project120v_UI_linkInfo.xml" --rom_model -o "VBL_project120v_UI.out" "./ADC.obj" "./CMPSS.obj" "./Callback.obj" "./DATA_TABLE.obj" "./Display.obj" "./F2807x_Adc.obj" "./F2807x_CodeStartBranch.obj" "./F2807x_CpuTimers.obj" "./F2807x_DBGIER.obj" "./F2807x_DefaultISR.obj" "./F2807x_Dma.obj" "./F2807x_ECap.obj" "./F2807x_EPwm.obj" "./F2807x_EQep.obj" "./F2807x_Emif.obj" "./F2807x_GlobalVariableDefs.obj" "./F2807x_Gpio.obj" "./F2807x_I2C.obj" "./F2807x_Mcbsp.obj" "./F2807x_PieCtrl.obj" "./F2807x_PieVect.obj" "./F2807x_Sci.obj" "./F2807x_Spi.obj" "./F2807x_SysCtrl.obj" "./F2807x_TempSensorConv.obj" "./F2807x_sci_io.obj" "./F2807x_struct.obj" "./F2807x_usDelay.obj" "./Fapi_UserDefinedFunctions.obj" "./Luxine_Connector.obj" "./System_CLK.obj" "./System_Setup.obj" "./eCAP.obj" "./ePWM.obj" "./key.obj" "./main.obj" "./packed_variables.obj" "./sci.obj" "C:/Users/Administrator/workspace_v9/Vollrath code/F28075 examples/F2807x_headers/cmd/F2807x_Headers_nonBIOS.cmd" -lrts2800_fpu32.lib -l2807x_Generic_RAM_lnk.cmd -lF2807x_Headers_nonBIOS.cmd -llibc.a
Check to see which cmd files you actually need (DO you need all three?)
I think I only need "F2807x_Headers_nonBIOS.cmd", then what should I need to do for the next step?
Thanks
YL
Yong Liu10 said:May I know how I can change it?
You should see all the cmd files appear in the Project Explorer view. You can remove the ones you don't need from there (right-click on the file and select "Delete" in the context menu)
For the #10099 error, please see:
https://processors.wiki.ti.com/index.php/Compiler/diagnostic_messages/10099
For your other errors, please see the below article on linker command files:
https://dev.ti.com/tirex/explore/node?node=APJQ1q8Ox6tOF4TmB4THeg__FUz-xrs__LATEST
Thanks
ki