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.
Hi.
What does the following error mean.
" Can't find a source file at "/db/ztree/library/trees/gep/gep-d17x/src/ti/targets/msp430/rts430/boot_3.3.c"
Locate the file or edit the source lookup path to include its location."
I get this error when in debug mode. Can't see that it's creating any problems.
Matt
Hi Matt,
does your project build without error? Do you have SYS/BIOS installed?
The error basically means what it says, it is looking in that directory for a source file that apparently is not there. This could be a that there is an include path missing you need to add, or else (as it is looking for and RTSC package it appears) your SYS/BIOS directory needs to be updated in CCS or you need to install it. (Assuming you wish to use it).
Do you get any error or dump files/logs?
Best Regards,
LIsa
Hi Lisa.
Yes my project build without errors. Not sure about the SYS/BioS, but I don't need it.
When I dedug my code, in the "DEBUG " Window is my project and underneath it is the following file "
c_int00_noinit_noexit() at boot_3.3.c:225 0xE260 (the entry point was reached) " and when you click on it it gives the error
as stated in my first post.
Regards
Hi Matthew,
do you have run to main deselected in your debug options? It looks like it is halting at the entry point C?int00 and not running to main.
Are you trying to link your own copy of the runtime library? The library does not seem to be in the default location. When it is halted like that can you browse to the c file it is looking for?
Best Regards,
Lisa
Hi Lisa.
Thanks for all your help.
When I debug my code it does run up to main and I can step through my code. Everything seems to work OK. I just want to know what that error means. It's the first time that I am using CCS.
When I look at the debug options. In the Auto Run Options it says " "Run to symbol "main"". But I can't deselect it. Unless I have to deselect it in another place?
Regads
Mat
Hi Matthew,
you should have run to main selected.
This error simply means it did not run to main. If this happens, you can see whether directly pointing to the source file will make it continue. Normally this would only come up in cases where run to main is not selected so it is a bit odd you see it but that is basically what the message means.
I hope this helps!
Best Regards,
Lisa