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: Code Composer Studio
During the debugging of an application, I get the following error:
Break at address "0x1000060a" with no debug information available, or outside of program code.
As I read the other forum posts with similar issues, the problem arises due to the CPU getting halted at a program address where no source code correlation or debug information is found.
Can anyone help me in pointing out how to solve this problem?
Debug information is needed by the debugger to provide source level debug visibility when debugging the program. Assuming debug symbol generation is not suppressed, debug information for a source file is generated when the file is compiled. This allows the debugger to correlate a program address with a source line among other things. If that information is not there, then the debugger will not be able to do that correlation and you will not be able to do source line level debug.
Let's look at your error:
Break at address "0x1000060a" with no debug information available, or outside of program code.
Either that address is a valid address with valid code but the debug information for that address is missing
OR
That the debug information is all there but that address is not valid or does not have any code associated with it.