Hi, everyone
Let me tell you guys what i am using first,
CCSv5.0.2.00006
OMAP3530 beagleboard.
xds100v2 emulator
Windows xp/windows 7
Note: i am not using any of the linux based applications.
I had mp3 decoder code for c64x+ CPU which i had successfully debugged and tested usng the CCSv5 and DSP/BIOS 5 okay.
Now choosing empty RTSC project, i targeted to use CCSv5 along with SYSBIOS and XDCtools.
I changed my code according to that up to my knowledge.Here i am attaching my project every details is there itself.
In the main file MP3Decoder.c, there are some lines like this,
#include <xdc/std.h>
#include <ti/sysbios/family/c64p/Cache.h>
#include "TestAppDecoder.h"
#include "imp3dec.h"
#include "alg.h"
/* Input buffer allocation */
XDAS_UInt8 inputData[INPUT_BUFFER_SIZE];
/* Output buffer allocation */
XDAS_UInt16 outputData[OUTPUT_BUFFER_SIZE];
/* Output buffer allocation */
XDAS_Void TestApp_EnableCache(void);
extern const IMP3DEC_Fxns MP3DEC_TII_IMP3DEC;
.
.
.
.
.................................
Note: rest of the header files and stuff is there in the project itself
now when i am building the project, i am getting the error like this
Description Resource Path Location Type
errors encountered during linking; "MP3Decoder.out" not built MP3Decoder C/C++ Problem
Linking failed. Check the Console window for details. MP3Decoder Unknown C/C++ Problem
unresolved symbol _MP3DEC_TII_IMP3DEC, first referenced in ./TestAppDecoder.obj MP3Decoder C/C++ Problem
But, when i am declaring this one as below prescribed one
const IMP3DEC_Fxns MP3DEC_TII_IMP3DEC;
Instruction fetch error was:
If anybody knew something about it, then download the project and can have shot on this. suggestions will be welcomed. If my information is not up to he required to someone, then please let me know about it.
Regards,
Nitin Mewada