Hello,
The code composer studio is displaying the following messages :
'breakpoint manger : some break/probe point were not set at valid lines ....." and as result, the location of my probe points is replaced.
How can i overcome this problem?
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.
Hello,
The code composer studio is displaying the following messages :
'breakpoint manger : some break/probe point were not set at valid lines ....." and as result, the location of my probe points is replaced.
How can i overcome this problem?
Jamil,
What this means is that there is no machine code associated with the source code where you are trying to set the breakpoint. Typically this happens if you are using optimization settings with the compiler which can modify and reorganize code flow for better performance.
If you go to CCS View drop down menu you will see Mixed source/assembly selection near the bottom. If you enable that you should see what code is actually running on the DSP. You can then select an assembly language instruction closest to the point where you want to set the breakpoint.
Regards.