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.
Tool/software: TI C/C++ Compiler
I have strange problems with files that exist, but the compiler and the debugger cannot find.
Finally, I can reproduce the problem with the BlinkLED example.
I imported the project BlinkLED in my workspace, and the compiler gives me an error, it doesn't find the file driverlib.h.
But the include paths seem to be right:
And the file exists:
If the file name is preceded by 2 folders names, the project compile !
But when I launch the debugger, I have an error message, the debugger doesn't find the .out file:
But the .out file exists :
Is there any reason for this ?
Unfortunately, the TI compiler does not support non-ASCII characters in directory paths. In your case, those accented e characters are the problem. They need to be removed or changed to a standard ASCII character. For more discussion on this limitation, please see this forum thread.
Thanks and regards,
-George