In my my current version of CCS5.4, the 'Step Into' ooption in the debug window allows me only to step block wise in C code. How do I 'Step Into' each and every line of the code?
Thanks.
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.
In my my current version of CCS5.4, the 'Step Into' ooption in the debug window allows me only to step block wise in C code. How do I 'Step Into' each and every line of the code?
Thanks.
Hello,
The first thing that comes to mind is that you have some optimization enabled. This would impact single source line stepping in ways such as what you describe. There is a tradeoff between optimization and debug visibility as mentioned in the below article:
http://processors.wiki.ti.com/index.php/Debug_versus_Optimization_Tradeoff
Thanks
ki
That actually helped me. Further I came across this discussion too which cleared some more of doubts: http://e2e.ti.com/support/dsp/c5000/f/109/t/124186.aspx
Thank you!