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.

Breakpoints Warning

Other Parts Discussed in Thread: MSP430F5329

Hello,

I'm a software developper for Flash generator.

I'm using the MSP430F5329 and CCS4.

I added new files in project.
After the compilation when I want to control the right working with Breakpoint I was surprised .
The Breakpoint was gray with a Warning message (...no code at this line...).
The most strang is that I have a .obj from this code, it means the code was well compiled.

  • Hi

    VOEGEL Michael said:
    The Breakpoint was gray with a Warning message (...no code at this line...).
    The most strang is that I have a .obj from this code, it means the code was well compiled.

    The debugger is complaining that it cannot associate that source line to the actual code. If you built your code with optimization enabled (-o2 or more), then this would explain it. Another reason is you didn't build the application with debug symbols.

  • Hi,

    I could put breakpoint everywhere but just not in these part of Code.

    Another information is that my RAM is full:

             name            origin    length      used     unused   attr    fill
    ----------------------  --------  ---------  --------  --------  ----  --------

      RAM                   00001c00   00002800  000027aa  00000056  RWIX

  • VOEGEL Michael said:
    I could put breakpoint everywhere but just not in these part of Code.

    You can apply build options on a per file basis. Also if you linking in libraries, those could have been built with different options.

    Basically without a reproducible test case that I can look at locally, it is very difficult to provide any concrete answers. if you can provide one, that would be great.

    Thanks

    ki