Respectd Sir,
I am new user of DSP kit TMS 320C6713. And I'm facing problem in building my first project. I've tried too much for building sucessful project but It's not doing like this. The new errors I'm facing is following:
[LED.c] "C:\CCStudio_v3.1\c6000\cgtools\bin\cl6x" -g -fr"C:/Documents and Settings/Administrator/Desktop/DSK6713/DSK6713/examples/dsk6713/bsl/LEDSTART/Debug" -mv6710 -@"Debug.lkf" "LED.c"
"LED.c", line 18: warning: last line of file ends without a newline
Warning: The project has no cmd file while the Text Linker is selected
[Linking...] "C:\CCStudio_v3.1\c6000\cgtools\bin\cl6x" -@"Debug.lkf"
<Linking>
>> warning: creating output section .intvecs without SECTIONS specification
>> warning: entry point symbol _c_int00 undefined
undefined first referenced
symbol in file
--------- ----------------
__strasg C:\Documents and Settings\Administrator\Desktop\DSK6713\DSK6713\examples\dsk6713\bsl\LEDSTART\dsk6713_opencodec.obj
_MCBSP_read C:\Documents and Settings\Administrator\Desktop\DSK6713\DSK6713\examples\dsk6713\bsl\LEDSTART\dsk6713_opencodec.obj
_MCBSP_open C:\Documents and Settings\Administrator\Desktop\DSK6713\DSK6713\examples\dsk6713\bsl\LEDSTART\dsk6713_opencodec.obj
_MCBSP_start C:\Documents and Settings\Administrator\Desktop\DSK6713\DSK6713\examples\dsk6713\bsl\LEDSTART\dsk6713_opencodec.obj
_MCBSP_rrdy C:\Documents and Settings\Administrator\Desktop\DSK6713\DSK6713\examples\dsk6713\bsl\LEDSTART\dsk6713_opencodec.obj
_MCBSP_config C:\Documents and Settings\Administrator\Desktop\DSK6713\DSK6713\examples\dsk6713\bsl\LEDSTART\dsk6713_opencodec.obj
_c_int00 C:\Documents and Settings\Administrator\Desktop\DSK6713\DSK6713\examples\dsk6713\bsl\LEDSTART\DSKintr.obj
RTEMU_msg C:\Documents and Settings\Administrator\Desktop\DSK6713\DSK6713\examples\dsk6713\bsl\LEDSTART\intvecs.obj
>> error: symbol referencing errors - './Debug/LEDSTART.out' not built
>> Compilation failure
Build Complete,
2 Errors, 4 Warnings, 0 Remarks.
There are 2 errors and for warnings and error is related to symbol referencing. I don't know what is it.
THis is my code:
#include "dsk6713.h"
#include "dsk6713_led.h"
#include "dsk6713_flash.h"
#include "dsk6713_dip.h"
void main()
{
DSK6713_init();
DSK6713_LED_init();
while(1)
{
DSK6713_LED_toggle(3);
DSK6713_waitusec(2000000);
}
}
I;m alsi nicludeing all headre file to new project and library files as well. But i Don't know What are the reason behind this. Kindly Help me out. Please
Regards,