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.

EVM6678LE error while load hua_evmc6678l.out file

Hi,

I was using the CCS5.1 to load hua_evmc6678l.out to the core 0 on EVM6678LE using USB JTAG cable. The boot mode has been set to no boot. However, I got a error information as follows:

Can't find a source file at "/home/a0868396/texas_instruments_orig/mcsdk_2_00_05_17/demos/hua/src/hpdspua.c"
Locate the file or edit the source lookup path to include its location.


I do not know what reason is. Please give me some suggestion.

I used the ubantu 11.04.

  • When you load the .out file, the CCS' display window needs to know the source file where the current PC pointing to. In your case, it is the file hpdspua.c. The path information are embedded in the .out file during the .out file being created. SInce you might have changed the file path (due to texas_instruments_orig?) after you built the .out file, the CCS can not find the file. This error won't affect the run of the .out file, but only the dispaly of the source file (for debug purpose).

    If you do need to locate the file, you can click on "Locate the file" next to the error information (on the same screen window), and lead the CCS to the location of the file. In your case, it should be at  the INSTALLATION_LOCATION_OF_THE_MCSDK/mcsdk_2_00_05_17/demos/hua/src/hpdspua.c.

    Regards!

    Wen

  • Thanks for your indication.