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.

#10008-D cannot find file "clki.a55L" audio

Code Composer Studio   Version: 6.1.0.00104

Win Vista, DSK 5510


I installed and use bios v. bios_5_42_01_09


I watn run example application project  "Audio":

www.dropbox.com/.../audio.rar

I have an error:

cannot find file "clki.a55L"    audio 

Where I can found clki.a55L  ?

  • Hello,

    That object file is from DSP/BIOS. Looking at your project, I see the tcf file is excluded from the build. Try including it to have the tcf file built by tconf

    Thanks
    ki
  • Yes, Thanks, Ki-Soo Lee. You are right.

    I found solution to my problem from:

    "I think the problem you are having is that you took the .cdb file from an older version of BIOS. Version 4.90 is what came with CCS3.1. Not sure what happened to the orignial C55xx.cdb file. "

    e2e.ti.com/.../175361

    Now I have another issue:

    "#error "Please read the comment below to finish updating your project"
    /*
    * The following steps are required to use this file:
    *
    * 1. Modify any source files that use these structures to
    * `#include <audiocfg_csl.h>`. These structure definitions were
    * previously contained in <audiocfg.h>.
    * 2. Call `CSL_init()` and `cslCfgInit()` from your application's main()
    * function. This is necessary to initialize CSL and the assorted
    * CSL handles. These functions were previously called by BIOS internally.
    * 3. Remove the #error line above.
    * 4. Update your linker options to include the CSL library for the device
    * that you are using. This library name was listed in the original
    * generated audiocfg.cmd file (e.g., "-lcsl6416.lib").
    * 5. If you are using the 54x or 55x, you will need to create an additional
    * linker .cmd file that includes the generated audiocfg.cmd file
    * and adds section placement for the '.csldata' section.
    *
    * See the DSP/BIOS Setup Guide for more information.
    */"

  • Can you help me to do this ( this items from audiocfg_csl.c from my audio project):

    " 5. If you are using the 54x or 55x, you will need to create an additional
    * linker .cmd file that includes the generated audiocfg.cmd file
    * and adds section placement for the '.csldata' section."

    What I must add to new, additional linker .cmd file ?

    #include audiocfg.cmd

    "adds section placement for the '.csldata' section."" how this section should look like?
  • I suggest also posting in the TI-RTOS forum. The people there are much more familiar with DSP/BIOS and can provide more suggestions.
    Thanks
    ki
  • Ok, Thanks, Ki.