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.

CCS/TMS320F28379D: Break at address "0x3fe493" with no debug information available, or outside of program code.

Part Number: TMS320F28379D

Tool/software: Code Composer Studio

when I debug my code in code composer studio it shows the error which is showing in the screenshot attached below. Please give me the suggestion what should I do.

  • Hello,
    That message is not an error message. The debugger is telling you that the target is halted at a program address where there is no source code correlation. It could mean one of two things:

    1) You are halted in valid code with no symbols loaded for it. This can happen if your project includes a library that has been stripped of all debug symbols. So if you are halted in this library code, you will not have any debug information

    2) You are halted at at an address where this is no actual code. This can happen if your code "runs off into the weeds" - basically your code hit some strange exception and jumped to an address that it should not. It could be a stack overflow/corruption, some other memory corruption, some interrupt triggered, etc. In any case, this is typically not a tools (CCS) issue but something specific to the device or program that needs to be debugged

    Thanks
    ki