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: How to copy entire content of imported project into Workspace in CCS 9

Part Number: CC2650

Tool/software: Code Composer Studio

Hi,

I have been using simple_peripheral example imported from ble_sdk example folder.  While Importing I have selected copy project into workpsace. I was expecting that entire content of the project would be copies into workspace directory. However in workspace_v9 directory there are only *.d, *.obj and *.mk files. I want to ensure that whatever changes I am making does not affect original example project files. For this I want to copy all files and folder specifically Application and Startup Folders so that original files are intact while I make changes as per my requirements.

I realized this while trying to add new header file in Application folder, it gave me error "Only virtual folders and links can be created under virtual folder".

How to import project so that all folders are actually imported and not linked ones.

Thanks

  • Hi,

    I am not a real expert of CCS, but when I need to do the same as you I use one of this three methods:

    • Basically copy-paste the project within CCS
    • Export the project as a zip file, then import it as an existing project
    • Use the windows file explorer and copy the whole project's folder (in that case I usually save the folder in a safe place and then continue to modify the existing CCS project)

    I hope this will help,

    Kind regards,

  • Cool. Will try that. Thanks for help.