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.

CCS/CC2650: Combining Source Files Into One Project Folder

Part Number: CC2650

Tool/software: Code Composer Studio

Hi Team,

We're working on a new project and I have a question on how to get all the source files in one project folder.

For example, currently, some source files in the sensorTag project are the links to the files in ti\simplelink\ble_sdk_2_02_04_06\src, some files are in the workspace_10/sensorTag. Is there any utility I could use to copy all the source files used in the project  to sensorTag folder and have the include/source paths updated automatically?

This way I could make sure all the source files (application, drivers, etc) are in one place.

Thank you for the help here.

  • Hi Joseph,

    There is no such tool available as far as I know. You would need to replaced the linked in files with local copies manually. You would also need to make sure that the include statements points to your project copy of the header file so that these do not trail back to the origin source folder (best way to do this is removing the include path pointing to the folders you want to disconnect). 

    As there is many dependencies in these projects, the recommended approach is to stick with the "link against the BLE stack" solution but you can of course try to pull all of that source into the project itself (as long as the folder structure remain similar, you should be fine).