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.

How to incorporate xdc tools to a newly created project

Other Parts Discussed in Thread: CC2650, SYSBIOS

Hi 

I am trying to create a ADC reading functionality using cc2650. I have created a new project by following the ccsv6 guide and copied necessary files and build the projects.

Initially I have an error as "unresolved symbol RestISR" . It was removed by following a solution that posted in the TI forum. 

Link to the solution   -> https://e2e.ti.com/support/development_tools/code_composer_studio/f/81/t/430252 

I added the startup_ccs.c and driverlib.lib as in the above solution.

But currently I am getting a bunch of unresolved symbol errors as follows.

undefined                                                                                                        first referenced
symbol                                                                                                             in file
---------                                                                                                              ----------------
ti_sysbios_family_arm_cc26xx_Power_setDependency__E              ./Drivers/PIN/PINCC26XX.obj
ti_sysbios_family_arm_m3_Hwi_Params__init__S                              ./Drivers/PIN/PINCC26XX.obj
ti_sysbios_family_arm_m3_Hwi_construct                                             ./Drivers/PIN/PINCC26XX.obj
ti_sysbios_family_arm_m3_Hwi_disableFxn__E                                  ./Drivers/PIN/PINCC26XX.obj
ti_sysbios_family_arm_m3_Hwi_restoreFxn__E                                   ./Drivers/PIN/PINCC26XX.obj
ti_sysbios_knl_Semaphore_Params__init__S                                      ./Drivers/PIN/PINCC26XX.obj
ti_sysbios_knl_Semaphore_construct                                                     ./Drivers/PIN/PINCC26XX.obj
ti_sysbios_knl_Semaphore_pend__E                                                     ./Drivers/PIN/PINCC26XX.obj
ti_sysbios_knl_Semaphore_post__E                                                      ./Drivers/PIN/PINCC26XX.obj

All these symbol are of data types related to XDC tools. 

Currently my newly created project does not have any section to configure XDCtools under Build settings. How can I incorporate XDC configurations to my newly created Project?