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.

building c6713 dsk programs in ccs v4.2

hi

 

i had experience with ccs v3.1 sdk software that comes with the dsk c6713 kit from spectrum digital, so now while doing the same with the ccs v4.1 platinum from where should i add header files like csl ,aic 23,  and c6723dsk.h etc ..........  other files ...i mean from where can i get this files when i am doing programs like BPSK digital modulator and demodulator etc... in programs also we include this files ,  so should i have to do some changes for that or not...

In my way can i download the source header files and add it manually ..this is all because i am this newer version of ccs which supports almost every ti products...

i don't have any experts for guiding me about learning dsp processors in some technical doubts,  so anyone  please guide me for this ..inform me if any link available to solve  this problem and having some tutorial on this topics..

thanks all...

 

 

 

  • You can download CSL from:

    http://processors.wiki.ti.com/index.php/CSL#Chip_Support_Library_for_C6000

    The rest of the files I believe you can download from Spectrum Digital's site:

    http://c6000.spectrumdigital.com/dsk6713/

    One you have the header files on your machine, you can add them to your include and library search paths in your build properties so they are picked up by the build.

    Thanks

    ki

  • hi

    thanks a lot ...

    NItin mewada

  • HI,

    thanks a lot for your guidance, but stated above about my problem , in debug settings  i have included the search paths for header files of 6713.

    but still while compiling the code that was given in the book rulph chaissing , in that book settings are given for the ccs 3, but i am using the ccs 4 so i what i have to make changes to be compatible with these codes. even the example codes are in reference to the ccs 3.

    here is the code from the that book..just look at it ..whether it is good for ccs4 or not.

    code;

     

    #include "dsk6713_aic23.h" //support file for codec,DSK

    Uint32 fs = DSK6713_AIC23_FREQ_8KHZ; //set sampling rate

    short loop = 0; //table index

    short gain = 10; //gain factor

    short sine_table[8]={0,707,1000,707,0,-707,-1000,-707};//sine values

    void main()

    {

    comm_poll(); //init DSK, codec, McBSP

    DSK6713_LED_init(); //init LED from BSL

    DSK6713_DIP_init(); //init DIP from BSL

    while(1) //infinite loop

    {

    if(DSK6713_DIP_get(0)==0) //=0 if switch #0 pressed

    {

    DSK6713_LED_on(0); //turn LED #0 ON

    output_sample(sine_table[loop]*gain); //output every Ts (SW0 on)

    if (++loop > 7) loop = 0; //check for end of table

    }

    else DSK6713_LED_off(0); //LED #0 off

    } //end of while (1)

    } //end of main

     

    so please guide for this..

    with regards

    Nitin Mewada