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.

IWR6843AOP

I'm using CCS studio for making my changes in the code of one the lab examples.

Since the lab example codes are placed in ti folder which is used for build for the lab examples. I have imported them from the CSS project from one the lab examples and made my changes in the code. Inorder to have the whole project at one place how can i export the project?

When i export at area_scanner_68xx_mss, the mss folder which has files in ti folder are not exported and the whole project is not at one place which is difficult for me to handle the project separately. Could you help me how to have all the project files at one place and build in CSS?

  • Hi Harish,

    Thank you for reaching out!

    Currently this project is set up to link to all these files to their location in the toolbox. This means as you are editing them you are editing them at their original location in the TI area_scanner_68xx_mss project. 

    If you were to copy these files into your workspace instead of linking them you can edit your own local versions of these files in your workplace and things would be much easier. 

    The best way to do this would be by editing the 68xx_area_scanner_dss.projectspec and 68xx_area_scanner_mss.projectspec files in the <!-- Project files --> by replacing the phrase action="link" with action="copy".

    MSS:

            <!-- Project files -->
            <file path="AREA_SCANNER_PARENT_DIR/common/src/dpc/objectdetectionandtracking/objdetrangehwa/src/objdetrangehwa.c" openOnCreation="false" excludeFromBuild="false" action="copy"/>
            <file path="mss/mss_main.c" targetDirectory="mss" openOnCreation="false" excludeFromBuild="false" action="copy"/>
            <file path="mss/mmw_cli.c" targetDirectory="mss" openOnCreation="false" excludeFromBuild="false" action="copy"/>
            <file path="mss/mmw_lvds_stream.c" targetDirectory="mss" openOnCreation="false" excludeFromBuild="false" action="copy"/>
            <file path="AREA_SCANNER_PARENT_DIR/common/src/utils/tracker/tracker_utils.c" targetDirectory="utils" openOnCreation="false" excludeFromBuild="false" action="copy"/>
            <file path="AREA_SCANNER_PARENT_DIR/common/src/utils/tracker/tracker_utils.h" targetDirectory="utils" openOnCreation="false" excludeFromBuild="false" action="copy"/>
            <file path="mss/mmw_mss.h" targetDirectory="mss" openOnCreation="false" excludeFromBuild="false" action="copy"/>
            <file path="include/mmw_config.h" targetDirectory="include" openOnCreation="false" excludeFromBuild="false" action="copy"/>
            <file path="include/mmw_output.h" targetDirectory="include" openOnCreation="false" excludeFromBuild="false" action="copy"/>
            <file path="mmw_res.h" openOnCreation="false" excludeFromBuild="false" action="copy"/>
            <file path="mss/mmw_mss.cfg" targetDirectory="mss" openOnCreation="false" excludeFromBuild="false" action="copy"/>
            <file path="COM_TI_MMWAVE_SDK_INSTALL_DIR/packages/ti/demo/utils/mmwdemo_rfparser.c" openOnCreation="false" targetDirectory="mss" excludeFromBuild="false" action="copy"/>
            <file path="COM_TI_MMWAVE_SDK_INSTALL_DIR/packages/ti/demo/utils/mmwdemo_adcconfig.c" openOnCreation="false" targetDirectory="mss" excludeFromBuild="false" action="copy"/>
            <file path="COM_TI_MMWAVE_SDK_INSTALL_DIR/packages/ti/demo/utils/mmwdemo_monitor.c" openOnCreation="false" targetDirectory="mss" excludeFromBuild="false" action="copy"/>
            <file path="mss/mmw_mss_linker.cmd" targetDirectory="mss" openOnCreation="false" excludeFromBuild="false" action="copy"/>
            <file path="mss/r4f_linker.cmd" targetDirectory="mss" openOnCreation="false" excludeFromBuild="false" action="copy"/>

    DSS:

            <!-- Project files -->
            <file path="dss/dss_main.c" targetDirectory="dss" openOnCreation="false" excludeFromBuild="false" action="copy"/>
            <file path="AREA_SCANNER_PARENT_DIR/common/src/dpc/objectdetectionandtracking/staticobjdetdsp/src/objectdetection.c" targetDirectory="dss" openOnCreation="false" excludeFromBuild="false" action="copy"/>
            <file path="dss/mmw_dss.h" targetDirectory="dss" openOnCreation="false" excludeFromBuild="false" action="copy"/>
            <file path="dss/mmw_dss.cfg" targetDirectory="dss" openOnCreation="false" excludeFromBuild="false" action="copy"/>
            <file path="include/mmw_config.h" targetDirectory="include" openOnCreation="false" excludeFromBuild="false" action="copy"/>
            <file path="include/mmw_output.h" targetDirectory="include" openOnCreation="false" excludeFromBuild="false" action="copy"/>
            <file path="mmw_res.h" openOnCreation="false" excludeFromBuild="false" action="copy"/>
            <file path="dss/mmw_dss_linker.cmd" targetDirectory="dss" openOnCreation="false" excludeFromBuild="false" action="copy"/>
            <file path="dss/c674x_linker.cmd" targetDirectory="dss" openOnCreation="false" excludeFromBuild="false" action="copy"/>     

    Once your new projectspec is ready, save all your files in ccs, delete the project (on the disk) and then reimport using your edited projectspec. 

    Please let me know if this is the solution for your problem or if you have more questions.

    Thank you,

    Angie