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 remove DSP/BIOS requirement from my project?

Guru 15580 points


I have somehow managed to create a project that requires DSP/BIOS, which I am not using.


"This project was created using a version of DSP/BIOS tools that is not currently installed: 5.41.11.38. Please install the DSP/BIOS tools of this version, or migrate the project to one of the supported versions. ARX900_DSPFW_V3 ARX900_DSPFW_V3 Problems"

How do I remove this requirement from my project?

  • MkeH,


    There is no streamlined way to remove DSP/BIOS dependencies from a project short of editing the project files in a text editor.


    I played with a very simple project I just created for C5500 and was able to remove the DSP/BIOS dependencies.


    Check the modifications I did to the following files (your files may be different depending on device and tool versions)


    .ccsproject said:

    Remove

     <templateProperties value="id=com.ti.rtsc.DSPBIOS.example_56,type=bios5,products=com.ti.rtsc.DSPBIOS,"/>

    .cproject said:

    Under each build configuration, locate the following:

       <storageModule moduleId="cdtBuildSystem" version="4.0.0">

    Then remove

            <listOptionValue builtIn="false" value="DSPBIOS_VERSION=5.42.1.09"/>

    And change

            <listOptionValue builtIn="false" value="OUTPUT_TYPE=bios5Application:rtscApplication:executable"/>

    To

            <listOptionValue builtIn="false" value="OUTPUT_TYPE=executable"/>

    Finally, remove

           <tool id="com.ti.rtsc.buildDefinitions.DSPBIOS_5.42.tool.1372966957" name="TConf" superClass="com.ti.rtsc.buildDefinitions.DSPBIOS_5.42.tool">
            <inputType id="com.ti.rtsc.buildDefinitions.DSPBIOS_5.42.tool.inputType__TCF.1903767464" name="TConf Scripts" superClass="com.ti.rtsc.buildDefinitions.DSPBIOS_5.42.tool.inputType__TCF"/>
           </tool>

    Hope this helps,

    Rafael

  • Rafael,

    This did work for me. Thanks!

    You might want to put this on the developers wish list for a more streamlined way to accomplish this.

    Mike