Dear all,
I have a problem with DSK 6713 and CCS 3.1
I have added the csl6713.lib ,rts6700.lib and dsk6713bsl.lib files from CCS to the project
The support files c6713dskinit.c, vectors_intr.asm and c6713dsk.cmd that come with Rulph Chassaing and Donald S. Reay text on using DSK6713.
My code is simple : to generate a sine wave using DSK6713; the code is given below
======================
#include "dsk6713_aic23.h" //codec-dsk support file
Uint32 fs=DSK6713_AIC23_FREQ_16KHZ; //set sampling rate
short sine_table[8] = {0,707,1000,707,0,-707,-1000,-707};
short gain = 10;
int i = 0;
interrupt void c_int11() //interrupt service routine
{
output_sample(sine_table[i]);
i= i+1;
if(i >= 8)i=0;
return;
}
void main()
{
comm_intr(); //init DSK, codec, McBSP
while (1);
}
===================================
I get a compilation failure message
undefined
symbol
---------
_inputsource
>> error: symbol referencing errors - './Debug/sinetest.out' not built
I am aware this is due to a linker related issue,but not able to trace the exact source of the problem. I tried re installing CCS3.1, after deleting the previous registry keys(Texas instruments and GODSP ) and folders.
Is the problem due to a typo in the program i am not able to locate (i am extremely sorry if that is the case)
I have seen that the many others have raised the same issue in online forums, but the issue remains unsolved.
you can find the Chassaing support files as this link
https://goo.gl/OH8UDi
compiler options
---------------------------
-g -fr"$(Proj_dir)\Debug" -i"c:\CCStudio_v3.1\C6000\dsk6713\include" -i"c:\CCStudio_v3.1\MyProjects\Support" -d"CHIP_6713" -mv6710 --mem_model:data=far
linker options
--------------------
-c -o".\Debug\sinetest.out" -stack0x1000 -w -x -i"c:\CCStudio_v3.1\C6000\dsk6713\lib" -l"rts6700.lib" -l"dsk6713bsl.lib" -l"csl6713.lib"
Thank for the patience to read the entire message
Joaquim