Because of the holidays, TI E2E™ design support forum responses will be delayed from Dec. 25 through Jan. 2. Thank you for your patience.

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.

DSP/BIOS Version Issue. How to "migrate" project?

Guru 15580 points

I am getting the following warning when building my project:

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

In CCS4 I have DSP/BIOS ver  5.41.02.14 installed. See below:

Why is my project being built with DSP/BIOS version 5.40.02.22? How do I "migrate" the project to the newer BIOS?

Thx

MikeH

 

 

  • The BIOS and compiler versions are stored as part of the project so this project would have originally been created with BIOS 5.40.02.22.  Moving from BIOS 5.40 to 5.41 is not a big deal, no real migration steps involved other than changing the BIOS version associated with the project.  Right click on your project and select build properties.  In the dialog that opens select CCS build settings on the left.  Now on the right hand side you should be able to change the version of BIOS set for the project.

     

    Regards,

    John

     

  • John,

    Thanks, but as the image above shows, I have already done this. To be more clear, below the entire CCS Build config window. Note the use of 5.41.02.14 DSP/BIOS. Could there be something in the orginal project file (EZDSP_AudioFilter.pjt) that was packaged with the sample project?

    MikeH

  • John,

    To complicate matters, I have re-imported a "virgin" copy of the AudioFilterDemo. After building the project I get the following warning.

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

    I attempt to rebuild with 5.41.02.14 and save using....

    ...and then get the following errog:

    There is no "mirgration.log" file in the root of the project directory.

    Can you explain?

  • This problem has been fixed as part of CQ SDSCM00036698. (raised from http://e2e.ti.com/support/development_tools/code_composer_studio/f/81/p/49421/175435.aspx).  The fix will be available with CCSv4.1.3.

    - Baltasar

  • I've just installed CCS 6 and was trying to import examples from c55_csl_3.04.zip (installed from TMS320C55XXCSL-LOWPWR-03.04.00.02-Setup.exe)


    Majority of the examples have been imported but then compilation failed.

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


    Please advise which settings / options might be wrong?

    - Victor

  • Victor - Do you have a version of DSP/BIOS installed and recognized by your CCSv6 installation? If so, CCS should try to use it. Note that CCSv6 does not come with DSP/BIOS by default (you can get it from the App Center)

    Thanks

    ki

  • Ki, thank you for good hint.

    I have installed bios_setupwin32_5_42_01_09 and I can see its directory under C:\ti

    It is not shown in the project settings dialog. I don't have the 5.41.10.36 installed but it is shown.

  • Victor,

    Does your project build now that you've installed DSP/BIOS?  Once DSP/BIOS is properly registered with CCS, it should appear in the Preferences > CCS > RTSC > Products page:

    - Baltasar

  • Baltasar,

    Thank you, there is certain progress. The DSP/BIOS problem has been solved.

    Compilation is OK now, but the linker fails - after I changed the device variant (under project - build settings - general) to EZDSP5535:

    error: cannot find file "libc.a"
    warning: automatic RTS selection:  attempt to automatically link in index
       library "libc.a" failed; file not found
    "../C5535.cmd", line 69: error: program will not fit into available memory.
       placement with alignment/blocking fails for section ".text" size 0x6760 page
       0.  Available memory ranges:
       DARAM1       size: 0x2000       unused: 0x2000       max hole: 0x2000    
    warning: entry-point symbol "_c_int00" undefined

     undefined    first referenced           
      symbol          in file                
     ---------    ----------------           
     _ATA_No_Swap ./atawrite_write.obj       
     __divi       ./atalong_createentry.obj 

    ....


    - Victor