i am using CCS v3.3 for the 28335 (ok, i know that it is old) and have been using it successfully for some time but for some reason it is not reaching some of my breakpoints....not all of them.....any ideas? 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.
i am using CCS v3.3 for the 28335 (ok, i know that it is old) and have been using it successfully for some time but for some reason it is not reaching some of my breakpoints....not all of them.....any ideas? Thanks.
Mark,
Did you have some Compiler Optimizations active?
If optimization is active breakpoints can't sometimes set.
Regards
Matt
Is it code that has been copied from flash to RAM? A Software breakpoint is an opcode inserted into the RAM by Code Composer. If you set a SW breakpoint and then later copy code over that same location the breakpoint will be lost and CCS is none the wiser. In this case the breakpoint would need to be set after running past the copy routine.
If this doesn't fit the senerio - can you provide some more details on where the breakpoint is (linear code, interrupt etc?)
-Lori
it is code that is copied from flash to RAM......you bring up some good points, i wonder if i am doing something procedurally that is erasing the SW breakpoint....the code in question is in the background and not in an ISR.....